Web Development Chapter 6 Review
float:right;
if an element is configured with.. the other content on the page will appear to its left.
padding, border, and margin
The box model consists of a content area surrounded by:
.myfloat {float:right; margin:10px; border:1px solid #000000;}
The CSS to create the class called myfloat that floats to the right of the other page content, has a 10px margin, and a solid border is:
0 pixels
The default value for the border property of an element is:
padding
The is the area between the content and the border.
class
To apply a style to one ore more elements on a web page, configure a CSS
the style will apply to only one element on a page
Use an id to configure a style when:
marign
When using the box model, the .. is always transparent
normal
flow displays the elements on the page in the order they appear in the web page source code
relative
use positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.