一列定宽,一列自适应

<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title></title>    <style>        /* 一列顶宽200px,外边距10,一列自适应 */        *{margin: 0;padding: 0;}        .aa{text-align: center; line-height: 200px; color: white;}

        /* 单浮动 */        /*.bb{float: left; width: 200px; height: 200px; }*/        /*.cc{height: 200px; margin-left: 210px; background-color: blue;}*/

        /* 双浮动;现代浏览器 calc()计算 */        /*.bb{float: left; width: 200px; height: 200px; }*/        /*.cc{float: right; width:calc(100% - 210px); height: 200px; background-color: blue; }*/

        /*主栏定位*/        /*.aa{position: relative; text-align: center; line-height: 200px; color: white; padding-left: 210px; }*/        /*.bb{position: absolute; top: 0; left: 0; width: 200px; height: 200px; }*/        /*.cc{width: 100%; height: 200px; background-color: blue;}*/

        /*侧栏定位*/        /*.aa{position: relative; text-align: center; line-height: 200px; color: white;}*/        /*.bb{width: 200px; height: 200px; }*/        /*.cc{position: absolute; left: 210px; top:0; right: 0; height: 200px; background-color: blue;}*/

        /* Tab */        /*.aa{display: table; text-align: center; line-height: 200px; color: white;}*/        /*.bb{width: 200px; height: 200px; margin-right: 10px; }*/        /*.cc{display: table-cell; width: 100%; height: 200px; background-color: blue;}*/

    </style></head><body><div class="aa">    <div class="bb">bb</div>    <div class="cc">cc</div></div></body></html>
时间: 2024-11-06 21:13:43

一列定宽,一列自适应的相关文章

多列布局之一列、多列定宽及一列自适应布局

命题: <div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div> 问题一:一列定宽及一列自适应 方案1: .left{ flo

NEC学习 ---- 布局 -两列, 左侧定宽,右侧自适应

CSS代码:以下两处代码是NEC中CSS初始化样式和功能性样式.今后的NEC研究中,默认这两处是引用的. /* 这是CSS reset 代码 --- 初始化样式 */ /* reset */ html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;

两列布局(一列定宽,一列自适应)

用table+table-cell实现两列布局(一列定宽,一列自适应,且table是自动的两列自动登高) 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <style type="text/css"> 7 .pare

两列布局,一列定宽,一列宽度自适应

方法一: body{ margin: 0;}.container{ height: 300px; overflow: hidden;}.left{ width: 200px; height: 300px; background: red; position: absolute; left:0; top: 0;}.right{ margin-left:200px; width: 100%; height: 300px; background: green;} <div class="cont

两列定宽布局

两列定宽布局方式的一个前提就是两列的盒模型宽度相加不能大于父元素的宽度,否则你懂得......错位了. 测试html页: <body> <div id="header"> 头部 </div> <div id="container"> <div class="mainBox"> 主要内容区域 </div> <div class="sideBox">

两列定宽布局-(来自网易)

<div class="g-bd f-cb"> <div class="g-mn"> <p>左侧定宽</p> </div> <div class="g-sd"> <p>右侧定宽</p> </div> </div> <style> /* 两列定宽布局 */ .g-bd{width:950px;margin:0 auto

中间定宽,两边自适应布局的三种实现方法

中间定宽,两边自适应布局的三种实现方法 1. 浮动加定位 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>中间定宽,两边自适应</title> <style type="text/css"> html,body,div{ height: 100%; } .parent{ p

CSS布局 -- 左侧定宽,右侧自适应

左侧定宽,右侧自适应 有很多种方法可以实现 缩小窗口试试看? 方案一: 左边左浮动,右边加个margin-left 查看 demo <!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/19

css高度已知,左右定宽,中间自适应三栏布局

css高度已知,左右定宽,中间自适应三栏布局: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X

css页面布局之左侧定宽,右侧自适应

左侧定宽,右侧自适应是一种常见的布局方式,比如好多后台和外卖点餐页面.常用的几种方案如下:方案1,使用flex布局:在线效果http://jsrun.net/FeYKp <div class="main" style="width: 100%;height: 400px;"> <div class="left" style="width: 200px;height: 200px;background: red;&quo