在单元格边框处有两个单元格中断的表格行上使用边框半径进行圆角处理

发布于 2024-12-28 21:30:09 字数 671 浏览 0 评论 0原文

我有一个包含两个单元格的表格行,并且该行具有悬停背景颜色,我试图使用边框半径将悬停背景颜色的角变圆,如下所示:

table tbody tr#ClickableRow:hover td
    {
        background-color: #fbf6e7;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        -khtml-border-radius: 4px;
        border-radius: 4px;
        cursor:pointer; 
    }

<tr id="ClickableRow">
    <td>
<a href="http://somesite.com">Go Here</a>
<p> To find about all the interestng animals found in this tourist attractions including 
zebra, giraffe etc
</p>
    </td>

<td>Call us:444-444-2322</td>
</tr>

它在单元格边框处正确断裂。如何解决这个问题?我无法选择行本身并应用半径..

I have a table row with two cells and the row has hover background color I am trying to to round the corners of hover background color using border radius like this:

table tbody tr#ClickableRow:hover td
    {
        background-color: #fbf6e7;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        -khtml-border-radius: 4px;
        border-radius: 4px;
        cursor:pointer; 
    }

<tr id="ClickableRow">
    <td>
<a href="http://somesite.com">Go Here</a>
<p> To find about all the interestng animals found in this tourist attractions including 
zebra, giraffe etc
</p>
    </td>

<td>Call us:444-444-2322</td>
</tr>

Its breaking right at the cell border. How can this be resolved? I can't select row itself and apply the radius..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2025-01-04 21:30:09

TD 中放置一个 DIV,然后在 DIV 中添加您的内容。将边框应用于 DIV 而不是 TD。

Put a DIV inside the TD, add your content in the DIV. Apply the borders to the DIV instead of the TD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文