ホームページ > 記事 > ウェブフロントエンド > 1 行 3 列 (幅と高さが同じ、間隔をあけて) の CSS+DIV を記述する方法 (すべてのブラウザに適しています)_html/css_WEB-ITnose
1 行 3 列 (幅と高さが同じ、間隔あり) で CSS+DIV を記述する方法 (すべてのブラウザに適しています)
たとえば、この幅は 980 ピクセルで、3 つの列はすべて 320 ピクセルです。
すべてのブラウザに適しています デバイスの書き方
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>无标题文档</title><style type="text/css">#wrapper { width: 980px; margin: 0 auto; }#header {width: 100%; background: #cfc;}#container { width: 100%; }#container #left,#container #content, #container #right { width: 320px; float: left }#left { background: #fc0;}#content { margin: 0 10px;background: #0c0;}#right { background: #0cf;}</style></head><body><div id="wrapper"> <div id="header">header</div> <div id="container"> <div id="left">left</div> <div id="content">content</div> <div id="right">right</div> </div></div></body></html>