ボタンを要素の上に配置し、要素の右側に浮かせようとしています<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;
}