Preliminary Research on CSS and Rural Tourism Culture
Css basic framework
index.html
1 <! DOCTYPE html> 2
easy_css_demo.css
1/* 2 * use the @ importsyntax to import other_css.css from the current style sheet to the current style sheet. 3 * (you can use the @ import statement for each style sheet) 4*5 **/6 @ import "other_css.css"; 7 8/* Basic css framework 9 * css style: 10 * property: value; 11 */12 a {13 text-decoration: none; 14}
CSSAttribute |
Description |
Background-color |
Set element background color |
Border |
Set borders around Elements |
Color |
Set the foreground color of an element |
Margin |
Set the element padding (the distance between the element content and the Border) |
Padding |
Set the element margin (the distance beyond the element Border) |
Width |
Set element width |
Height |
Set element height |
Font-size |
Set the font size of the element text |
Text-decoration |
Set the decoration effect of element text |