我怎样才能使按钮浮动只在div区域?
这是我的示例css和html ..
<div class='test'> <div style='float: left;'> <button>test</button> </div> <div style='float: right;'> <button>test</button> </div> </div>
CSS
.test { width:60%; display:inline; overflow: auto; white-space: nowrap; margin:0px auto; }
或者你可以在这里看到实时样本 – > http://jsfiddle.net/ELAVS/
我希望它像这样..