6

我正在尝试在表格内应用右边距但没有运气

<html>
  <style>
    input,select {
      width: 100%;
      margin-right: 15px;
      background: red;
    }
  </style>
  <body>
    <table border="2" color="red" width="100%">
       <tr>
         <td width="25%"><input type="text" /></td>
         <td width="25%"><select><option>foobar</option></select></td>
         <td width="25%"><input type="text" /></td>
         <td width="25%"><input type="text" /></td>
       </tr>
       <tr>
         <td width="25%"><input type="text" /></td>
         <td width="25%"><input type="text" /></td>
         <td width="25%"><select><option>foobar</option></select></td>
         <td width="25%"><input type="text" /></td>
       </tr>
    <table>
  </body>
</html>

示例:http: //jsfiddle.net/3reat/

只有使用 CSS 才能定义 100% - 15px 的边距?

http://jsfiddle.net/3reat/2/

4

1 回答 1

3

尝试 css3 计算

(例如)

margin: calc(100% - 15px);
margin: -webkit-calc(100% - 15px);
margin: -moz-calc(100% - 15px);

参考:https ://developer.mozilla.org/en-US/docs/CSS/calc

于 2013-04-13T16:48:57.480 回答