CSS Flashcards
Change the background color of the body element to sky blue.
body {
background-color: #87CEFF
}
Create a border around the whole body that is 50 pixels thick and white.
body {border: 50px solid #FFFFFF}
or
body {border: 50px solid white}
What symbol makes the CSS select EVERYTHING?
*
Add a background image to an article element
article { backrgound-image: URL(""); background-size: 80px 60px; background-repeat: no-repeat; }
What attribute makes alignment relative to edge of page rather than other existing element?
.class {
position:absolute;
}
How do you underline text
text-decoration:underline;
How do you change the color of a link?
a:link {
color: green;
}
How do you change the color of an already clicked link?
a:visited {
color: pink;
background-color: transparent;
text-decoration: none; }
How do you change the color of a link you hover over?
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}