ホームページ > 記事 > ウェブフロントエンド > # HTML && CSS
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; /*等于宽度的一半*/}
4.枠線は小さな三角形になります
幅10px、下方向が黒、背景色が赤になりますbackground-position:center;
div{ width:0; height:0; border:10px solid red; border-top-color:black; }
6. top
親要素にボーダーを追加することで解決できます
7. デフォルトのスタイルをクリアします
white-space:nowrap;/*不换行*/ white-space:normal;/*换行*/
9. フォーム
body,h1,h2,h3,h4,h5,h6,dl,dd,p{marhon:0;} ul,ol{margin:0; padding:0;} th.td{padding:0;}
をクリアします
<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;