CSS英文教程:CSS语法
one class per given element, the syntax is:
The paragraph above will be styled by the class "center" AND the class "bold". You can also omit the tag name in the selector to define a style that will be used by all HTML elements that have a certain class. In the example below, all HTML elements with class="center" will be center-aligned:
In the code below both the h1 element and the p element have class="center". This means that both elements will follow the rules in the ".center" selector:
Add Styles to Elements with Particular AttributesYou can also apply styles to HTML elements with particular attributes. The style rule below will match all input elements that have a type attribute with a value of "text":
The id SelectorYou can also define styles for HTML elements with the id selector. The id selector is defined as a #. The style rule below will match the element that has an id attribute with a value of "green":
The style rule below will match the p element that has an id with a value of "para1":
Do NOT start an ID name with a number! It will not work in Mozilla/Firefox. CSS CommentsComments are used to explain your code, and may help you when you edit the source code at |
||||||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |