CSS左侧固定宽 右侧自适应的实现代码(兼容所有浏
左侧固定宽,右侧自适应屏幕宽;
左右两列,等高布局;
左右两列要求有最小高度,例如200px;(当内容超出200时,会自动以等高的方式增高)
要求不用JS或CSS行为实现;
仔细分析试题要求,要达到效果其实也并不是太难,只是给人感觉像有点蛋疼的问题一样。你仔细看后你会觉得不是那么回事
左边固定,右边自适应布局,这个第一点应该来说是非常的容易,实现的方法也是相当的多,那么就可以说第一条要求已不是什么要求了;
左右两列等高布局,这一点相对来说要复杂一些,不过你要是了解了怎么实现等高布局,那么也是不难。我个人认为这个考题关键之处就在考这里,考你如何实现等高布局;所以这一点你需要整明白如何实现;
至于第三条要求,应该来说是很方面的,我们随处都可以看到实现最小高度的代码;
第四条这个要求我想是考官想让我们面试的人不能使用js来实现等高布局和最小高度的功能。
上面简单的分析了一下实现过程,那么最终关键之处应该是就是“让你的代码要能实现两点,其一就是左边固定,右边自适应的布局;其二就是实现两列等高的布局”,如果这两个功能完成,那么你也就可以交作业了。那么狼蚁网站SEO优化我们就先来看看这两 点是如合实现
一、两列布局左边固定宽度,右边自适应宽度
这样的布局,其实不是难点,我想很多同学都有实现过,那么我就在此稍微介绍两种常用的方法
方法一浮动布局
这种方法我采用的是左边浮动,右边加上一个margin-left值,让他实现左边固定,右边自适应的布局效果
HTML Markup
- <div id="left">Left sidebar</div>
- <div id="content">Main Content</div>
- CSS Code
- <style type="text/css">
- {
- margin: 0;
- padding: 0;
- }
- #left {
- float: left;
- width: 220px;
- background-color: green;
- }
- #content {
- background-color: orange;
- margin-left: 220px;/==等于左边栏宽度==/
- }
- </style>
上面这种实现方法最关键之处就是自适应宽度一栏“div#content”的“margin-left”值要等于固定宽度一栏的宽度值,大家可以点击查看上面代码的DEMO
方法二浮动和负边距实现
这个方法采用的是浮动和负边距来实现左边固定宽度右边自适应宽度的布局效果,大家可以仔细对比一下上面那种实现方法,看看两者有什么区别
HTML Markup
- <div id="left">
- Left Sidebar
- </div>
- <div id="content">
- <div id="contentInner">
- Main Content
- </div>
- </div>
CSS Code
- {
- margin: 0;
- padding: 0;
- }
- #left {
- background-color: green;
- float: left;
- width: 220px;
- margin-right: -100%;
- }
- #content {
- float: left;
- width: 100%;
- }
- #contentInner {
- margin-left: 220px;/==等于左边栏宽度值==/
- background-color: orange;
- }
这种方法看上去要稍微麻烦一点,不过也是非常常见的一种方法,大家可以看看他的DEMO效果。感觉一下,和前面的DEMO有什么不同之处。
我 在这里就只展示这两种方法,大家肯定还有别的实现方法,我就不在多说了,因为我们今天要说的不是这个问题。上面完成了试题的第一种效果,那么大家就要想办 法来实现第二条要求——两列等高布局。这一点也是本次面试题至关重要的一点,如果你要是不清楚如何实现等高布局的话,我建议您先阅读本站的《八种创建等高 列布局》,里面详细介绍了八种等高布局的方法,并附有相关代码,而且我们后面的运用中也使用了其中的方法。
现在关键的两点都完成了,那么我们就需要实现第三条要求,实现最小高度的设置,这个方法很简单
- min-height: 200px;
- height: auto !important;
- height: 200px;
上面的代码就轻松的帮我们实现了跨浏览器的最小高度设置问题。这样一来,我们可以交作业了,也完面了这个面试题的考试。为了让大家更能形象的了解,我在这里为大家准备了五种不同的实现方法
方法一
别的不多说,直接上代码,或者参考在线DEMO,狼蚁网站SEO优化所有的DEMO都有HTML和CSS代码,感兴趣的同学自己慢慢看吧。
HTML Markup
- <div id="container">
- <div id="wrapper">
- <div id="sidebar">Left Sidebar</div>
- <div id="main">Main Content</div>
- </div>
- </div>
CSS Code
- <style type="text/css">
- {
- margin: 0;
- padding: 0;
- }
- html {
- height: auto;
- }
- body {
- margin: 0;
- padding: 0;
- }
- #container {
- background: #ffe3a6;
- }
- #wrapper {
- display: inline-block;
- border-left: 200px solid #d4c376;/==此值等于左边栏的宽度值==/
- position: relative;
- vertical-align: bottombottom;
- }
- #sidebar {
- float: left;
- width: 200px;
- margin-left: -200px;/==此值等于左边栏的宽度值==/
- position: relative;
- }
- #main {
- float: left;
- }
- #maing,
- #sidebar{
- min-height: 200px;
- height: auto !important;
- height: 200px;
- }
- </style>
方法二
HTML Markup
- <div id="container">
- <div id="left" class="aside">Left Sidebar</div>
- <div id="content" class="section">Main Content</div>
- </div>
CSS Code
- <style type="text/css">
- {margin: 0;padding: 0;}
- #container {
- overflow: hidden;
- }
- #left {
- background: #c;
- float: left;
- width: 200px;
- margin-bottom: -99999px;
- padding-bottom: 99999px;
- }
- #content {
- background: #eee;
- margin-left: 200px;/==此值等于左边栏的宽度值==/
- margin-bottom: -99999px;
- padding-bottom: 99999px;
- }
- #left,
- #content {
- min-height: 200px;
- height: auto !important;
- height: 200px;
- }
- </style>
方法三
HTML Markup
- <div id="container">
- <div id="content">Main Content</div>
- <div id="sidebar">Left Sidebar</div>
- </div>
CSS Code
- {margin: 0;padding: 0;}
- #container{
- background-color:#0ff;
- overflow:hidden;
- padding-left:220px; / 宽度大小等与边栏宽度大小/
- }
- html #container{
- height:1%; / So IE plays nice /
- }
- #content{
- background-color:#0ff;
- width:100%;
- border-left:220px solid #f00;/ 宽度大小等与边栏宽度大小/
- margin-left:-220px;/ 宽度大小等与边栏宽度大小/
- float:rightright;
- }
- #sidebar{
- background-color:#f00;
- width:220px;
- float:rightright;
- margin-left:-220px;/ 宽度大小等与边栏宽度大小/
- }
- #content,
- #sidebar {
- min-height: 200px;
- height: auto !important;
- height: 200px;
- }
方法四
HTML Markup
- <div id="container2">
- <div id="container1">
- <div id="col1">Left Sidebar</div>
- <div id="col2">Main Content</div>
- </div>
- </div>
CSS Code
- {padding: 0;margin:0;}
- #container2 {
- float: left;
- width: 100%;
- background: orange;
- position: relative;
- overflow: hidden;
- }
- #container1 {
- float: left;
- width: 100%;
- background: green;
- position: relative;
- left: 220px;/ 宽度大小等与边栏宽度大小/
- }
- #col2 {
- position: relative;
- margin-right: 220px;/ 宽度大小等与边栏宽度大小/
- }
- #col1 {
- width: 220px;
- float: left;
- position: relative;
- margin-left: -220px;/ 宽度大小等与边栏宽度大小/
- }
- #col1,#col2 {
- min-height: 200px;
- height: auto !important;
- height: 200px;
- }
方法五
HTML Markup
- <div id="container1">
- <div id="container">
- <div id="left">Left Sidebar</div>
- <div id="content">
- <div id="contentInner">Main Content</div>
- </div>
- </div>
- </div>
- {padding: 0;margin: 0;}
- #container1 {
- float: left;
- width: 100%;
- overflow: hidden;
- position: relative;
- background-color: #dbddbb;
- }
- #container {
- background-color: orange;
- width: 100%;
- float: left;
- position: relative;
- left: 220px;/ 宽度大小等与边栏宽度大小/
- }
- #left {
- float: left;
- margin-right: -100%;
- margin-left: -220px;/ 宽度大小等与边栏宽度大小/
- width: 220px;
- }
- #content {
- float: left;
- width: 100%;
- margin-left: -220px;/ 宽度大小等与边栏宽度大小/
- }
- #contentInner {
- margin-left: 220px;/ 宽度大小等与边栏宽度大小/
- overflow: hidden;
- }
- #left,
- #content {
- min-height: 200px;
- height: auto !important;
- height: 200px;
- }
针对上面的面试题要求,我一共使用了五种不同的方法来实现,经过测试都能在各浏览器中运行,我有几点需要特别提出
上面所有DEMO中,要注意其方向性的配合,并且值要统一,如果您想尝试使用自己布局需要的宽度值,请对照相关代码环节进行修改;
上面所有DEMO中,没有设置他们之间的间距,如果您想让他们之间有一定的间距,有两种方法可能实现,其一在上面的DEMO基础上修改相关参数,其二,在相应的里面加上"div"标签,并设置其“padding”值,这样更安全,不至于打破你的布局
因为我们这里有一列使用了自适应宽度,在部分浏览器下,当浏览器屏幕拉至到一定的大小时,给我们带来的感觉是自适应宽度那栏内容像是被隐藏,在你的实际项目中最好能在“body”中加上一个“min-width”的设置。
以上这篇CSS左侧固定宽 右侧自适应的实现代码(兼容所有浏览器)就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML