首先我有一个大<div class="content">
它包含<table>
,我想要的是:
<table>
而只是<tr>
时:背景颜色改变(没关系),但内容需要保持边界半径(现在不行) - &gt;这是我的问题)如何使<div class=content">
的边界半径显示(现在tr是“覆盖它,边界半径在悬停时消失)
这是一个简单的脚本(当悬停=相同宽度相同的边界半径时,黄色需要与灰色相同)
.content{
width:100%;
height:auto;
border-radius:10px;
background-color:gray;
}
table{
width:100%;
cursor:pointer;
}
tr{
width:100%;
border-radius:10px !important;
}
table tr:hover{
background-color:gold;
border-radius:10px;
}
<div class="content">
<table>
<tr>
<td>hello</td>
<td>world</td>
</tr>
</table>
</div>
答案 0 :(得分:2)
border-radius
需要应用于td
元素。
使用:first-child
和:last-child
选择器应用边框半径。
.content {
width: 100%;
height: auto;
border-radius: 10px;
background-color: gray;
}
table {
width: 100%;
cursor: pointer;
}
tr {
width: 100%;
border-radius: 10px !important;
}
table tr:hover {
background-color: gold;
border-radius: 10px;
}
table tr:hover td:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
table tr:hover td:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
&#13;
<div class="content">
<table>
<tr>
<td>hello</td>
<td>world</td>
</tr>
</table>
</div>
&#13;
答案 1 :(得分:0)
你border-radius
上还需要td
这就是为什么颜色超过tr的半径
我已将border-top-left-radius
和border-bottom-left-radius
放在最后td
上的第一个border-top-right-radius
和border-bottom-right-radius
以及td
上
让我知道是否有帮助
.content{
width:100%;
height:auto;
border-radius:10px;
background-color:gray;
}
table{
width:100%;
cursor:pointer;
}
tr{
width:100%;
border-radius:10px !important;
}
td:last-child {
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomright: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
td:first-child{
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomleft: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
table tr:hover{
background-color:gold;
border-radius:10px;
}
<div class="content">
<table>
<tr>
<td>hello</td>
<td>world</td>
</tr>
</table>
</div>
答案 2 :(得分:0)
您需要将border-radius
应用于td
代码,而不是tr
代码。假设您的表中有多行,每行包含多个单元格,则需要设置将border-radius
应用于四个不同的单元格:
以下是您的表现方式:
table{
background:gray;
border-radius:10px;
width:100%;
}
tr:hover>td{
background:gold;
}
tr:first-child>td:first-child{
border-top-left-radius:10px;
}
tr:first-child>td:last-child{
border-top-right-radius:10px;
}
tr:last-child>td:first-child{
border-bottom-left-radius:10px;
}
tr:last-child>td:last-child{
border-bottom-right-radius:10px;
}
&#13;
<table>
<tbody>
<tr>
<td>Lorem</td>
<td>Ipsum</td>
<td>Dolor</td>
</tr>
<tr>
<td>Lorem</td>
<td>Ipsum</td>
<td>Dolor</td>
</tr>
<tr>
<td>Lorem</td>
<td>Ipsum</td>
<td>Dolor</td>
</tr>
</tbody>
</table>
&#13;
答案 3 :(得分:-1)
<强> HTML:强>
<?php
// USING PDO...
//DATABASE CONNECTION CONFIGURATION:
defined("HOST") or define("HOST", "localhost");
defined("DBASE") or define("DBASE", "yourDB");
defined("USER") or define("USER", "root");
defined("PASS") or define("PASS", "root");
ob_start();
if(isset($_GET['userID'])!="") {
$userID = $_GET['userID'];
try {
$dbh = new PDO('mysql:host='.HOST.';dbname='. DBASE,USER,PASS);
$dbh->setAttribute(PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
$query = "DELETE FROM `tbl_users` WHERE userID='{$userID}'";
$stmt = $dbh->prepare($query);
$deleteOK = $stmt->execute();
if ($deleteOK) {
header("Location:index.php");
}
}catch(PDOException $e){
throw new Exception($e->getMessage());
}
}
ob_end_flush();
<强> CSS:强>
<div class="content">
<table>
<tr>
<td>hello</td>
<td>world</td>
</tr>
</table>
</div>