多列样式布局_html/css_WEB-ITnose
程序员文章站
2022-05-10 11:04:13
...
效果图如下:
代码如下:
1 2 3 4Document 5 127 128 129普通文档布局
130Left131Right132 133 134 135行内布局使用inline-block
136Left137Right138 139 140 141浮动布局float
142Left:148
143 width: 200px;
144 height: 100px;
145 float: left;
146 green;147Right154 155 156 157
149 width: 60%;
150 height: 100px;
151 float: right;
152 red;153浮动布局float+margin正边距与多列布局
158两列
159160 Left Sidebar166
161 float: left;
162 width: 200px;
163 height: 100px;
164 green;
165167 height: 100px;168 red;169 margin-left: 200px;/*==等于左边栏宽度==*/170174 175171 Main Content172173176 Right Sidebar182
177 float: right;
178 width: 200px;
179 height: 100px;
180 green;181183 height: 100px;184 red;185 margin-right: 200px;/*==等于右边栏宽度==*/186190 191187 Main Content188189三列
192193 Left Sidebar199
194 float: left;
195 width: 200px;
196 height: 100px;
197 green;
198200 Right Sidebar206
201 float: right;
202 width: 200px;
203 height: 100px;
204 green;205207214 215 216208 Main Content213
209 height: 100px;
210 red;
211 margin: 0 200px;
212浮动布局float+margin负边距与多列布局
217两列
218 226227237 238228236右侧主体自适应区块
229.mainR:width: 100%;230 float: right;
231.contentR:height: 100%;232 margin-left: 200px;233 red;234
235239248 256 257240247左侧主体自适应区块
241.mainL:width: 100%;242 float: left;
243.contentL:height: 100%;244 margin-right: 200px;245 red;
246三列
258 266267279 287 288268278主体自适应区块
269.mainR:width: 100%;270 float: left;271
272.contentLR:height: 100%;273 margin-left: 200px;274 margin-right: 200px;275 red;276
277
推荐阅读
-
使用CSS3实现多列布局与多背景的技巧
-
Web页面中八种创建多列等高(等高列布局)的实现技术
-
智能提示含查询多列(html+JS+handler+ HttpRemoting)二、Remoting代码
-
智能提示含查询多列(html+JS+handler+ HttpRemoting)一、html示列 加 JS加 请求 Handler
-
css多列布局(实例)
-
Android自定义RadioGroupX实现多行多列布局
-
css排版常用样式、三种不同html类型、css布局盒模型介绍
-
给HTML页面添加CSS样式和自适应布局控制其显示
-
html 三列布局(两列自适应,一列固定宽度)
-
前端基础??CSS+DIV布局_html/css_WEB-ITnose