我正在尝试没有运气在表格中应用正确的边距
<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>
只使用CSS,可以定义这个边距100% – 15px?
@编辑
解决方法
尝试css3 calc
(例如)
margin: calc(100% - 15px); margin: -webkit-calc(100% - 15px); margin: -moz-calc(100% - 15px);