问个DIV+CSS做网页的问题,在线等高手解决!
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!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=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center">
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
本人刚接触DIV+CSS,以上代码在屏幕最大化的时候,可以正常显示,为什么当窗口缩小的时候,就完全走形了呢,三个框框根本就不在一行了,为什么会换行,怎么才能窗口缩小的时候不换行,正常显示,希望高手帮我改改代码,说出原因!小弟拜谢
加个框之后,宽度设置902PX应该是正合适的,在浏览器100%大小的时候一切正常,为什么缩小点还会变形,希望高手们再帮帮我!我真的是菜鸟一个 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center">
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
本人刚接触DIV+CSS,以上代码在屏幕最大化的时候,可以正常显示,为什么当窗口缩小的时候,就完全走形了呢,三个框框根本就不在一行了,为什么会换行,怎么才能窗口缩小的时候不换行,正常显示,希望高手帮我改改代码,说出原因!小弟拜谢
加个框之后,宽度设置902PX应该是正合适的,在浏览器100%大小的时候一切正常,为什么缩小点还会变形,希望高手们再帮帮我!我真的是菜鸟一个 展开
展开全部
<!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=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.box{ width:902px; margin:0 auto; padding:0;}/*这里是为添加的class写的样式*/
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center" class="box"><!--这里定义了一个class-->
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.box{ width:902px; margin:0 auto; padding:0;}/*这里是为添加的class写的样式*/
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center" class="box"><!--这里定义了一个class-->
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
参考资料: 原创
展开全部
<!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=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.main{width:1000px;height:auto;}
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center" class="main">
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
其实你需要加个框就好了,不然他当然会飘,因为没东西框住他
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
body{margin:30px 50px auto 50px;}
.main{width:1000px;height:auto;}
.flash{float:left;width:280px;height:280px;border:1px solid #cccccc;}
.abc{float:left;width:400px;height:280px;background-color:#999999;margin-left:10px;}
.bcd{float:right;width:200px;height:280px;background-color:#999999;margin-left:10px;}
</style>
</head>
<body>
<div align="center" class="main">
<div align="center" class="flash"></div>
<div align="center" class="abc"></div>
<div align="center" class="bcd"></div>
</div>
</body>
</html>
其实你需要加个框就好了,不然他当然会飘,因为没东西框住他
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是使用浮动布局,就是float:left; 所以当你窗口缩小时,页面也会跟着浮动,造成走形。
你可以改为静态布局,即position:absolute; 这个布局是绝对定位,就是你想让他放在哪里他就在哪里,不会自己跑。固定住3个框架的具体位置(width和height都设置具体值)就可以了。
你可以改为静态布局,即position:absolute; 这个布局是绝对定位,就是你想让他放在哪里他就在哪里,不会自己跑。固定住3个框架的具体位置(width和height都设置具体值)就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是,这么多人,就没人看得见align="center"这个东西???都怎么了这是……
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询