html中如何将两个div并列显示
<html><head><style>#e{margin-left:500px;margin-top:230px;font-style:italic;text-align...
<html>
<head>
<style>
#e {
margin-left:500px;
margin-top:230px;
font-style:italic;
text-align:center;
}
</style>
</head>
<body background="lann.jpg">
<div id="e">
<div id="d" style="float:left">
<h2 class="tit" style="color:#000000">站点管理</h2>
<ul>
<li><h3><a href="" style="color:#000000">站点添加</a></h3></li>
<li><h3><a href="" style=" color:#000000 ">站点修改</a></h3></li>
<li><h3><a href="" style="color:#000000">站点删除</a></h3></li>
</ul>
</div>
<div id="c" style="float:right" >
<h2 class="tit2" style="color:#000000">线路管理</h2>
<ul>
<li><h3><a href="" style="color:#000000" >线路添加</a></h3></li>
<li><h3><a href="" style="color:#000000">线路修改</a></h3></li>
<li><h3><a href="" style="color:#000000">线路删除</a></h3></li><br/>
</li>
</ul>
<h2 class="tit2" style="color:#000000">关于</h2>
</div>
</div>
结果显示是这样,我想让站点管理和线路管理并列显示在“公交查询小助手”下面,这样看着好看,请问该如何实现,html也贴了出来,大家看看。 展开
<head>
<style>
#e {
margin-left:500px;
margin-top:230px;
font-style:italic;
text-align:center;
}
</style>
</head>
<body background="lann.jpg">
<div id="e">
<div id="d" style="float:left">
<h2 class="tit" style="color:#000000">站点管理</h2>
<ul>
<li><h3><a href="" style="color:#000000">站点添加</a></h3></li>
<li><h3><a href="" style=" color:#000000 ">站点修改</a></h3></li>
<li><h3><a href="" style="color:#000000">站点删除</a></h3></li>
</ul>
</div>
<div id="c" style="float:right" >
<h2 class="tit2" style="color:#000000">线路管理</h2>
<ul>
<li><h3><a href="" style="color:#000000" >线路添加</a></h3></li>
<li><h3><a href="" style="color:#000000">线路修改</a></h3></li>
<li><h3><a href="" style="color:#000000">线路删除</a></h3></li><br/>
</li>
</ul>
<h2 class="tit2" style="color:#000000">关于</h2>
</div>
</div>
结果显示是这样,我想让站点管理和线路管理并列显示在“公交查询小助手”下面,这样看着好看,请问该如何实现,html也贴了出来,大家看看。 展开
5个回答
展开全部
并排的话,你需要使用CSS的float属性,然后在设置浮动;
比如
<div style="widht:500px">
<div style="float:left;width:200px">左</div>
<div style="float:left;width:200px">右</div>
</div>
这样,这个两个DIV标签就在同一行上了(同时靠左),当然有个前提,就是他们俩的父元素的宽度要至少大于400px,这样才能在同一行上。这个结果是两个DIV的右侧会空出100PX的空白
<div style="widht:500px">
<div style="float:left;width:200px">左</div>
<div style="float:right;width:200px">右</div>
</div>
以上写法,也是在同一行。不同的是,一个靠左,一个靠右。
这里边的两个DIV的中间有100PX的空白。
比如
<div style="widht:500px">
<div style="float:left;width:200px">左</div>
<div style="float:left;width:200px">右</div>
</div>
这样,这个两个DIV标签就在同一行上了(同时靠左),当然有个前提,就是他们俩的父元素的宽度要至少大于400px,这样才能在同一行上。这个结果是两个DIV的右侧会空出100PX的空白
<div style="widht:500px">
<div style="float:left;width:200px">左</div>
<div style="float:right;width:200px">右</div>
</div>
以上写法,也是在同一行。不同的是,一个靠左,一个靠右。
这里边的两个DIV的中间有100PX的空白。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把id为c的DIV设左浮动就OK了。(你设了右浮动。。。)这句应该这样写:<div id="c" style="float:left" >。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接设置2个div 左浮动就可以了。
更多追问追答
追问
的确是,能不能控制他们两个之间的距离,设置为左浮动之后距离太近了,请问可以不。
追答
当然可以的,只要你明白css中盒模型的原理就简单。
marging外部距离
padding内部距离
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<style>
#e {
margin-left:500px;
margin-top:230px;
font-style:italic;
text-align:center;
}
</style>
</head>
<body background="lann.jpg">
<div id="e">
<div id="d" style="float:left">
<h2 class="tit" style="color:#000000">站点管理</h2>
<ul>
<li><h3><a href="" style="color:#000000">站点添加</a></h3></li>
<li><h3><a href="" style=" color:#000000 ">站点修改</a></h3></li>
<li><h3><a href="" style="color:#000000">站点删除</a></h3></li>
</ul>
</div>
<div id="c" style="float:left" >
<h2 class="tit2" style="color:#000000">线路管理</h2>
<ul>
<li><h3><a href="" style="color:#000000" >线路添加</a></h3></li>
<li><h3><a href="" style="color:#000000">线路修改</a></h3></li>
<li><h3><a href="" style="color:#000000">线路删除</a></h3></li><br/>
</li>
</ul>
<h2 class="tit2" style="color:#000000">关于</h2>
</div>
</div>
<head>
<style>
#e {
margin-left:500px;
margin-top:230px;
font-style:italic;
text-align:center;
}
</style>
</head>
<body background="lann.jpg">
<div id="e">
<div id="d" style="float:left">
<h2 class="tit" style="color:#000000">站点管理</h2>
<ul>
<li><h3><a href="" style="color:#000000">站点添加</a></h3></li>
<li><h3><a href="" style=" color:#000000 ">站点修改</a></h3></li>
<li><h3><a href="" style="color:#000000">站点删除</a></h3></li>
</ul>
</div>
<div id="c" style="float:left" >
<h2 class="tit2" style="color:#000000">线路管理</h2>
<ul>
<li><h3><a href="" style="color:#000000" >线路添加</a></h3></li>
<li><h3><a href="" style="color:#000000">线路修改</a></h3></li>
<li><h3><a href="" style="color:#000000">线路删除</a></h3></li><br/>
</li>
</ul>
<h2 class="tit2" style="color:#000000">关于</h2>
</div>
</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询