To add class
and id
attributes to HTML elements and use those
as CSS selectors.
Web Programming book reading for THIS class
line-height
Property padding
Property, margin
PropertyWeb Programming book reading for NEXT class
a
Elementindex.html
Filea
Element Additional DetailsAdditional References
Questions from our last class or the readings?
Text Alignment
Dean, Web Programming, p. 109
Text Decoration
Dean, Web Programming, p. 109
Text Transformation
Dean, Web Programming, p. 110
Paragraph Spacing
line-height
Dean, Web Programming, fig. 3.18, p. 108
Control of Text Spacing (with a quote from Defense Attorney Bryan Stevenson)
word-spacing: 3px ;
Each of us is more than the worst thing we’ve ever done.
Each of us is more than the worst thing we’ve ever done.
letter-spacing: -1px ;
Each of us is more than the worst thing we’ve ever done.
Each of us is more than the worst thing we’ve ever done.
AVAILABLE
AVAILABLE
ALTA, Inc.
Indentation
text-indent
<p style="text-indent: 2em;">
Obviously, prison time is not how someone wants to live their life, but rather than view this as lost time, you can choose to focus on what opportunities are in front of you.
Many men incarcerated at the Concord Men’s Prison have thrived in this environment and gone on to be very successful in prison and after. These men worked hard to improve themselves by participating in whatever prison programs helped them achieve their goals, whether this meant enrolling in high school classes, vocational training, improving personal fitness, focusing on family or pursuing a college degree.
Margins and Padding
source: https://www.quora.com/What-are-the-differences-between-margin-and-padding
margin="1em"
margin="2em 1em"
margin="2em 3em 2em 1em"
Pseudo-Elements
:first-letter
to a p
tag styles the first letter
of the paragraph :first-line
to a p
tag styles the entire first
line of the paragraph<style> p { text-indent: 2em; } p:first-letter { font-size: 2em; } p:first-line { font-weight: bold; } </style>
:
)Obviously, prison time is not how someone wants to live their life, but rather than view this as lost time, you can choose to focus on what opportunities are in front of you.
Many men incarcerated at the Concord Men’s Prison have thrived in this environment and gone on to be very successful in prison and after. These men worked hard to improve themselves by participating in whatever prison programs helped them achieve their goals, whether this meant enrolling in high school classes, vocational training, improving personal fitness, focusing on family or pursuing a college degree.
Goal: To continue working with CSS and to see how an element’s rendering can be changed dynamically.
body
and style
sections of the page. Toggle
function and see if you can figure out how to add the
same functionality to your new WARM button that exists for the
HOT and COLD buttons.Hamburger
Cheeseburger
Hot Dog
French Fries
Cole Slaw
.label { background-color: red; border-radius: 50%; padding-left: 0.6em; padding-right: 0.6em; margin-right: 0.5em; } <span class="label" onclick="Toggle( this )"></span> Hamburger<br>
This is Class No. 6. It was last modified on
Saturday, October 21, 2023 at 4:38 PM. Copyright © 2010-2024 by Jesse M. Heines. All rights reserved, but may be freely copied or excerpted for
educational purposes with credit to the author.