当前位置:编程学习 > html/css >>

css中选择器的格式是如何规定的?

答案:<style type="text/css"> #qq{ width:100px; height:100px; border:1px solid #000000;} .bb{ width:100px; height:100px; background-color:#666666;} input{ background-color:#3300FF;} </style> </head> <body> <div id="qq"></div> <div class="bb"></div> <input type="text" /> </body> #qq是id选择器 .bb是类选择器 input是标签选择器,看不懂的话就接着问我
其他:样式属性写在{ }之间,每个属性以 ; 结束 选择符{属性1:属性值1; 属性2:属性值2;....} <style type="text/css">
     #div0
        {   样式  }
     .div1
        {   样式  }
</style>
  <div id="div0" class="div1">
  <p style="font-size:14px">在标签中定义样式</p>
  </div>
从上面看#表示id选择器,id选择器具有唯一性,仅能给一个标签使用
        .表示类别选择器,可以被多个标签使用

上一个:为什么我的css+div效果出不来!网页设计初学者代码(附样本图),请教高手帮忙修正!
下一个:我现在学c语言和div+css

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,