为了账号安全,请及时绑定邮箱和手机立即绑定

呵呵都怎么想的

宽度自适应的意思就是根据内容来决定宽度长短,这帮发代码的人脑子怎么想的

正在回答

2 回答

<!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=utf-8" />

<title>混合布局编程挑战</title>

<style type="text/css">

body{ width:1024px;margin:auto; padding:0; font-size:30px; color:black;}

.top{height:100px;margin:0 auto;background:yellow;}

.main{background:red;}

.left{position:absolute;left:0;top:100px;width:200px;height:450px;background:blue;}

.right{height:450px;margin:0 0 0 210px;background:green;}

.foot{margin:0 auto;height:100px;clear:both;background:purple;}

</style>


</head>


<body>

<div class="top">top</div>

<div class="main">

    <div class="right">right</div>

    <div class="left">left</div>

</div>

<div class="foot">foot1231123123123123123123123123123123123123123foot1231123123123123123123123123123123123123123</div>


</body>

</html>


0 回复 有任何疑惑可以回复我~

不是根据内容,是根据屏幕尺寸么

0 回复 有任何疑惑可以回复我~
#1

Lucifershine 提问者

内容多大就把DIV撑开多大,你看下里面人才发的width:100%都是什么鬼,直接把宽度设为父元素的100%?有意义吗,真要这样的话干脆不用设了,因为本来就是独占一行
2016-10-18 回复 有任何疑惑可以回复我~
#2

平少丶 回复 Lucifershine 提问者

margin:0 auto和width 100%,width auto,不写任何东西,效果都是一样的,我觉得要是内用自适应还要设置inline才行 我刚才把一段代码打的超过了一行,他就开始延长宽度了,内容延长,而背景不延长,不懂了
2016-10-18 回复 有任何疑惑可以回复我~
#3

Lucifershine 提问者 回复 平少丶

要用display:inline-block;转化成行内块,这样就宽度自适应了,但是这样也有问题,对下面的元素有影响,你用margin:0 auto没用的,本来就是独占一行的居中体现不出来的
2016-10-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
如何用CSS进行网页布局
  • 参与学习       209624    人
  • 解答问题       1153    个

用最简洁的案例教你布局的那些知识,这是前端工程师基本技能

进入课程

呵呵都怎么想的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信