4th Qtr. Note 4 Css Buttons
4th Qtr. Note 4 Css Buttons
defines a clickable
button.
Basic Button Styling
CSS HTML
.button {
background- <button>Default Button
color:green;
color: white; </button>
padding: 15px 32px; <button class="button">
text-align: center;
font-size: 16px; Button
} </button>
Button Colors
Use the background-color property to change
the background color of a button:
CSS HTML
button {color: white;
padding: 15px 32px; <button
text-align: center; class="button1">Green</button>
font-size: 16px; <button
margin: 4px 2px; } class="button2">Blue</button>
.button1 {background-
color:green;} <button
.button2 {background- class="button3">Red</button>
color: Blue;} <button
.button3 {background- class="button4">Gray</button>
color: Red; } <button
.button4 {background-
class=“button5">Black</button>
Button Sizes
CSS
button {color: white;
padding: 15px 32px;
text-align: center;
margin: 4px 2px; }
.button1 {font-size: 10px; background-
color:green;}
.button2 {font-size: 12px; background-
color: Blue;}
.button3 {font-size: 16px; background-
color: Red; }
.button4 {font-size: 20px; background-
color: Gray ; }
Use the padding property to change the padding of a button:
CSS
.button1 {padding: 10px
24px;}
.button2 {padding: 12px
28px;}
.button3 {padding: 14px
40px;}
.button4 {padding: 32px
Rounded Buttons
.button1 {border-
radius: 2px;}
.button2 {border-
radius: 4px;}
.button3 {border-
radius: 8px;}
.button4 {border-
radius: 12px;}
.button5 {border-
Colored Button
Borders
.button1 {
background-
color: white;
color: black;
border: 2px solid Green
}
.button {
-webkit-transition- <button class="button
duration: 0.4s; button1">Green</button>
transition-duration: 0.4s; <button class="button
}
button2">Blue</button>
.button:hover {
<button class="button
background-color: green; button3">Red</button>
color: white; } <button class="button
button4">Gray</button>
Background - Shorthand
property
When using the shorthand property the order of the property values is:
•background-color
•background-image
•background-repeat
•background-attachment
•background-position
Border - Shorthand Property