我一直在使用HTML和CSS来设置简历的样式,但是我在设置
这不适用于桌子内吗?
-moz-border-radius: 5x; -webkit-border-radius: 5px;
Tatu Ulmanen.. 25
是的,它适用于表格td
和th
元素,但不是tr
.您也可以使用它table
来围绕整个桌子的角落.
如果要对一行单元格进行舍入以使左侧和最右侧的元素四舍五入,则需要使用:first-child
和:last-child
伪类:
tr td:first-child { -moz-border-radius-topleft: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; } tr td:last-child { -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; }
first-child
IE6不支持,虽然IE7增加了对它的支持,但它仍然缺乏last-child
.但是在你的情况下这并不重要,因为border-radius
无论如何都不适用于那些浏览器.
是的,它适用于表格td
和th
元素,但不是tr
.您也可以使用它table
来围绕整个桌子的角落.
如果要对一行单元格进行舍入以使左侧和最右侧的元素四舍五入,则需要使用:first-child
和:last-child
伪类:
tr td:first-child { -moz-border-radius-topleft: 5px; -moz-border-radius-bottomleft: 5px; -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; } tr td:last-child { -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; }
first-child
IE6不支持,虽然IE7增加了对它的支持,但它仍然缺乏last-child
.但是在你的情况下这并不重要,因为border-radius
无论如何都不适用于那些浏览器.