gpt4 book ai didi

html - 带有圆边的 Jquery Mobile 表格

转载 作者:可可西里 更新时间:2023-11-01 13:35:37 25 4
gpt4 key购买 nike

我正忙于在 jquery Mobile 中使用回流表。我想让我的 table 的第一行和最后一行有圆边。我正在使用以下代码:

th:first-child {
-moz-border-radius: 6px 0 0 0;
-webkit-border-radius: 6px 0 0 0;
border-radius: 6px 0 0 0;
}

th:last-child {
-moz-border-radius: 0 6px 0 0;
-webkit-border-radius: 0 6px 0 0;
border-radius: 0 6px 0 0;
}

HTML类似这样;

<table>
<thead>
<tr>
<th>First column</th>
<th>Second column</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row one, cell one</td>
<td>Row one, cell two</td>
</tr>
<tr>
<td>Row two, cell one</td>
<td>Row two, cell two</td>
</tr>
<tr>
<td>Row three, cell one</td>
<td>Row four, cell two</td>
</tr>
</tbody>

从字面上看,我只想让最顶部和最底部的单元格具有圆 Angular 边缘。

最佳答案

这有点接近...

thead tr:first-child th:first-child {
-moz-border-radius: 6px 0 0 0;
-webkit-border-radius: 6px 0 0 0;
border-radius: 6px 0 0 0;
}

thead tr:first-child th:last-child {
-moz-border-radius: 0px 6px 0 0;
-webkit-border-radius: 0px 6px 0 0;
border-radius: 0px 6px 0 0;
}

tr:last-child td:first-child{
-moz-border-radius: 0px 0px 0px 6px;
-webkit-border-radius: 0px 0px 0px 6px;
border-radius: 0px 0px 0px 6px;
}

tr:last-child td:last-child{
-moz-border-radius: 0px 0px 6px 0px;
-webkit-border-radius: 0px 0px 6px 0px;
border-radius: 0px 0px 6px 0px;
}

关于html - 带有圆边的 Jquery Mobile 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17296965/

25 4 0
文章推荐: html - 谁能解释为什么 Facebook 似乎在 HTML 评论中 Conceal 了 HTML 代码?
文章推荐: php - Qcodo vs. CakePHP vs. Zend
文章推荐: php - 理想的 "always/anywhere available"web 开发环境?
文章推荐: javascript - 在父 div 缩小时隐藏子
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com