必要に応じて省略記号を使用して、同じ行にヘッダーとボタンが必要です。
ここにフィドルがあります:http://jsfiddle.net/epyFT/1/
出力を次のようにしたいと思います。
_________________________________________________________
| |
| Header goes here [button] |
| |
---------------------------------------------------------
または
_________________________________________________________
| |
| Super, super, super, super long header... [button] |
| |
---------------------------------------------------------
または、より小さなウィンドウで:
____________________________
| |
| Header goes... [button] |
| |
----------------------------
ボタンが次の行にフロートすることはありません。これどうやってするの?
HTML
<div class="container">
<h2>This is the header that should never wrap and elipse if it doesn't fit</h2>
<button>Button</button>
</div>
<div class="container">
<h2>Header</h2>
<button>Button</button>
</div>
CSS
.container {
width:100%;
}
h2 {
display:inline;
min-width:200px;
overflow: hidden; white-space: nowrap; text-overflow: ellipsis; word-break: break-all; word-wrap: break-word;
}
button {
width:100px;
}
ボーナス
そこに 2 番目の (固定幅) ボタンを追加して右に引っ張ることに対する追加の功績。
_________________________________________________________
| |
| Header goes here [button1] [button2] |
| |
| |
| Super, super, super, super long... [button] [button2] |
| |
---------------------------------------------------------