表内的CSS边距

时间:2013-04-13 16:39:31

标签: css margin

我正在尝试没有运气在表格中应用正确的边距

<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?

@Edit

解决宽度:calc(100% - 15px)来自@TamilSelvan的CSS3回复空格

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

1 个答案:

答案 0 :(得分:3)

尝试css3 calc

(例如)

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

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