各位CSS大神,图中黄色块怎么上去啊?跟绿色块一行,位置最右边

html:<divid="content_main2"><divclass="main_title2"></div><divclass="main2_opt"><ulcl... html:
<div id="content_main2">
<div class="main_title2"></div>
<div class="main2_opt">
<ul class="opt_list">
<li>最新</li>
<li>最热</li>
<li>官方菜单</li></ul>
</div>
</div>
css
#content_main2 {width:990px; margin:0px auto; background:#500BF9(蓝);}
.main_title2 {width:300px; height:120px; line-height:120px; margin:0px auto; text-align:center; background:#3FFB07(绿);}
.main2_opt {float:right; background:#E3F806(黄); height:120px; line-height:120px;}
展开
 我来答
网海1书生
科技发烧友

2017-02-09 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26226

向TA提问 私信TA
展开全部

绿色块是块级元素,它会独占一行,所以黄色块就被它踢到下一行了。

解决办法一是把黄色通过绝对腊哪定位放到蓝色框的最右边:

#content_main2 {POSITION:relative; width:990px; margin:0px auto; background:#500BF9;}

.main_title2 {width:300px; height:120px; line-height:120px; margin:0px auto; text-align:center;  background:#3FFB07;}

.main2_opt {POSITION:absolute; right:0; top:0; background:#E3F806; height:120px; line-height:120px;}

二是把绿色轮行码块也做成浮动元素,通过左边距来居中(注意这时候蓝色框要指定高度带昌,或者在黄色块后面清除浮动):

#content_main2 {width:990px; height:120px; margin:0px auto; background:#500BF9;}

.main_title2 {float:left; width:300px; height:120px; line-height:120px; margin-left:345px; text-align:center;  background:#3FFB07;}

.main2_opt {float:right; background:#E3F806; height:120px; line-height:120px;}

Alexs耶
2017-02-09 · TA获得超过1641个赞
知道小有建树答主
回答量:239
采纳率:93%
帮助的人:75.9万
展开全部

可以使用绝对定位或相对定位毁晌(中则自己选一个对布局更友好卖余棚的方法):

.main2_opt{position:absolute; top: 0px; left:???px}
/*绝对定位*/
.main2_opt{position:relative; top: 0px; left:???px}
/*相对定位*/
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式