Home > Article > Web Front-end > Detailed introduction to CSS style background and text
1. Background
1. Use the background-color attribute for the background color, for example: body{background-color:red}
2. Use the background-image attribute to use an image as the background, such as body{background-image:ul1(23.jpg)
3. Use the background-repeat attribute to repeatedly tile the background from the image, repeat- x or repeat-y means horizontal or vertical tiling respectively,
no-repeat means allowing tiling from any direction
For example: body
{background-image:url(23 .jpg)
background-repeat:repeat-x:) }
4. Use the background-position attribute to position the background, [position: top, bottom, left, right, center, you can also use
Percent (50% 50%), length value (50px 50px)]
For example: body
{background-image:url (23.jpg)
background-position:center}
5. Use background-attachment to set the image association attributes. For example, the background of the picture below will not scroll with the scrolling of the text
body{background-image:url(23.jpg);
background-repeat:no-repeat;
background-attachment:fixed;}
##2. Text
1. Use the text-indent attribute to indent text. The most common one is the indentation of the first line of a paragraph. The indent value can be a negative number. For example: p{text- indent:-5em}, but setting a negative number can easily exceed the left boundary of the browser window, so special attention should be paid; The indent value unit can be percentage %, the length unit px, and the measurement unit em; The text-indent attribute can be inherited, for example:p#outer {width:500px;}
p#inter {text-indent:10%}
p{width:200px;}
< p id="outer">
some text.some text.some text.
this is a pragramph
value normal, blank Character: merge, newline character: ignore, automatic line wrapping: allowed;
value nowrap, whitespace character: merge, newline character: reserved, automatic newline character: not allowed value pre-wrap, whitespace character: reserved, newline character : Reserved, automatic line wrapping: allow
8. The direction attribute affects the writing direction of text in block-level elements, the direction of layout in lists, the direction of content horizontally filling its text box, and the direction of the last line in justified elements. Position (there are two values, ltr and rtk, where ltr is the default value and is the direction from left to right)
The above is the detailed content of Detailed introduction to CSS style background and text. For more information, please follow other related articles on the PHP Chinese website!