在一个div标签中如何使两具div标签并列?请举列说明,可以的一定给分.
发布网友
发布时间:2022-04-25 16:17
我来回答
共5个回答
热心网友
时间:2022-04-25 17:46
解决了你的问题,希望能帮到你,把代码直接粘进去即可。代码如下:
<!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">
.wrap{width:400px; height:200px; margin:0 auto}
.div_1{width:200px; height:100px; background:#999966; float:left}
.div_2{width:200px; height:100px; background:#0099CC; float:left}
</style>
</head>
<body>
<div class="wrap">
<div class="div_1">无标题文档1</div>
<div class="div_2">无标题文档2</div>
</div>
</body>
</html>
热心网友
时间:2022-04-25 19:04
方案1
<div style="width:300px; height:100px; float:left;margin:5px;border:solid 1px black;" >111</div>
<div style="width:300px; height:100px; float:left;margin:5px;border:solid 1px black;" >222</div>
-------------------------------------------------------------
方案2
<div style="width:300px; height:100px; float:left;margin:5px;border:solid 1px black;" >左排</div>
<div style="width:300px; height:100px; float:right;margin:5px;border:solid 1px black;" >右排</div>
热心网友
时间:2022-04-25 20:39
* {padding: 0; margin:0;}加上这个看看吧,感觉你只是在页面布局的时候想在一个div中再放两个div,而这两个div需要并列放,不知道是不是这么想的!
热心网友
时间:2022-04-25 22:30
<span>并列显示
热心网友
时间:2022-04-26 00:38
<div id="a" style="width:300px;">
<div id="a1" style="width:100px; float:left">111</div>
<div id="a2" style="width:150px;">222</div>
</div>