首頁 >web前端 >html教學 ># HTML && CSS

# HTML && CSS

高洛峰
高洛峰原創
2016-10-15 16:04:332887瀏覽

1.Div左右居中

<div>1<div>div{
width;300px;height:300px;margin:0 auto;
}

2.Div上下左右居中

<div class=&#39;father&#39;>
   <div class=&#39;son&#39;></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.關於margin-top的傳遞問題
為其父元素加上邊框,就可以解決

7.清除預設樣式

body,h1,h2,h3,h4,h5,h6,dl,dd,p{marhon:0;}
ul,ol{margin:0; padding:0;}
th.td{padding:0;}

8.表格

7.清除預設樣式

<table border=&#39;1&#39;>
<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;

8.表格

9.表單

/*for和id相同*/<label for=&#39;username&#39;>用户名</lable>
<input type=&#39;text&#39; id=&#39;username&#39; value=&#39;Input your name&#39;/>

10.清除浮動

.clearfix:after{
display:block;
content:&#39;&#39;;
clear:both;
}
.clearfix{
zoom:1;  /* for IE6*/
}
🎜🎜🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn