我正在尝试将一个按钮放在元素的顶部并浮动到<p>
元素的右侧。
这是我的尝试:http: //jsfiddle.net/ZBZZU/
HTML
<p id="hello"><strong>Hello</strong></p>
<button id="button">Button</button>
CSS
#hello {
text-align:center;
font-size:20px;
border:solid 2px;
border-color:black;
color:white;
background-color:red;
margin:2px;
}
#button {
display:inline;
float:right;
}