正确地在两个div上放置一个按钮

时间:2014-10-02 14:15:37

标签: html css html5 css3 button

寻找最有效的方法来放置一个跨越两个后续div的按钮

像这样:btnoverdivs

1 个答案:

答案 0 :(得分:2)

试试这个http://jsfiddle.net/2gLL9x5x/

HTML

<div id="top">TOP</div>
<button>Button</button>
<div id="bottom">Bottom</div>

CSS

#top{
background-color:green;
width:500px;
height:200px;
}

#bottom{
background-color:red;
width:500px;
height:200px;
}

button{
position:absolute;
margin-top:-10px;
margin-left:220px;

}