右侧主体自适应区块
229.mainR:width: 100%;230 float: right;
231.contentR:height: 100%;232 margin-left: 200px;233 red;234
235时间:2021-07-01 10:21:17 帮助过:29人阅读
代码如下:
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