css需要记住的一些东西

比如:叫h1中的内容显示大写

h1 {
    text-transform: uppercase;
}

要显示中被选中的背景色变色,小元素中的间距用内间距分开:

.idTabsShort .selected {
    background: none repeat scroll 0 0 #4f4f4f;
    border-radius: 0;
    color: #fff !important;
    display: block;
    text-decoration: none;
    display:block;
}

1、CSS代码片段:

.shou_daxie{text-transform:capitalize} 
.quan_daxie{text-transform:uppercase} 
.quan_xiaoxie{text-transform:lowercase}

2、HTML源代码片段:

<div class="shou_daxie"> 首字母大写 ni hao hello </div> 
<div class="quan_daxie">  字母全实现大写ni hao hello </div> 
<div class="quan_xiaoxie">  字母全实现小写ni HAo hEllo无论字母是否被大写都将被CSS小写 </div>


你可能感兴趣的:(css需要记住的一些东西)