我一直在使用HTML和CSS来设计我的简历样式,但我在设计元素样式时遇到了困难。
这在表中不起作用吗?
-moz-border-radius: 5x;
-webkit-border-radius: 5px;发布于 2010-02-04 17:30:26
<style type="text/css">
    .test 
    { 
        -moz-border-radius: 5px; 
        -webkit-border-radius: 5px; 
        border: #a9a9a9 1px solid; .
        width: 200px; 
        height: 50px; 
    }
</style>
<table class='test'>
    <tr>
        <td>
           this is a test
        </td>
    </tr>
</table>这对我在Chrome和FF中是有效的。
https://stackoverflow.com/questions/2198512
复制相似问题