メニューを考案中です。このメニューには、2 列に配置されたボタンが含まれている必要があります。各ボタンの幅は、使用可能な画面幅の 50% にする必要があります。
各ボタンを同じサイズにすることができました。しかし、ボタンに含まれる文字数に関係なく、各ボタンを画面幅の 50% にしたいと考えています。さらに、さまざまな画面解像度をサポートする必要があるため、相対的なサイズで作業する必要があります。
ここに私がこれまでに得たワットがあります: http://jsfiddle.net/PJ9cJ/
<div class="actions" id="actions">
<div id="steuerung">
<table class="actions_table" border="0" >
<tr >
<td>
<a href="javascript:displaySomething();" class="action_button" >Button 1</a>
</td>
<td >
<a href="javascript:displaySomething();" class="action_button" >Button 2</a>
</td>
</tr>
<tr >
<td >
<a href="javascript:displaySomething();" class="action_button" >Button 3</a>
</td>
<td >
<a href="javascript:displaySomething();" class="action_button" >Button 4</a>
</td>
</tr>
</table>
</div>
</div>
そして、ここで私の問題を見ることができます: 私は助けに感謝します! ありがとうございました!