[聚合文章] Hybird App之选择器详解(一)

CSS 2012-02-09 20 阅读
image.png

另外还有个通配符*,通常在通配符设置marigin值、padding值

*{    margin: 0px;    padding: 0px;}
类选择器

1、类选择器允许以一种独立于文档元素的方式来指定样式
例如:.class{}
index.html

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>选择器</title>    <link href="style.css" type="text/css" rel="stylesheet"></head><body>    <div class="div">hello,Dwyane</div></body></html>

style.css

.div{    color: blue;}
                

注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。