1. Div는 왼쪽, 오른쪽 중앙
<div>1<div>div{ width;300px;height:300px;margin:0 auto; }
2. Div는 위쪽, 아래쪽, 왼쪽, 오른쪽 중앙
<div class='father'> <div class='son'></div></div>.son{position:absolute;top:50%;left:50%;width:300px;heigeht:300px; margin-top:-150px; /*等于高度的一半*/margin-left:-150px; /*等于宽度的一半*/}
3. , 왼쪽 및 오른쪽
background-position:center;
4. 테두리는 작은 삼각형이 됩니다
너비가 10px인 작은 삼각형을 얻고 검정색은 아래쪽을 향하며 배경색은 빨간색입니다
div{ width:0; height:0; border:10px solid red; border-top-color:black; }
5. 줄 바꿈에 대하여
white-space:nowrap;/*不换行*/ white-space:normal;/*换行*/
6. 여백 상단 전달 문제
에 대하여 부모 요소에 테두리를 추가하면 해결됩니다
7. 기본 스타일 지우기
body,h1,h2,h3,h4,h5,h6,dl,dd,p{marhon:0;} ul,ol{margin:0; padding:0;} th.td{padding:0;}
8. 테이블
<table border='1'> <thead><tr><th>sex</th><th>age</th></tr></thead> <tbody> <tr><td>man</td><td>18</td></tr> <tr><td>female</td><td>28</td></tr> </tbody> table{border-collapse:collapse;} 跨行合并:rowspan; 跨列合并:colspan;
9. 양식
/*for和id相同*/<label for='username'>用户名</lable> <input type='text' id='username' value='Input your name'/>
float 지우기
.clearfix:after{ display:block; content:''; clear:both; } .clearfix{ zoom:1; /* for IE6*/ }