gpt4 book ai didi

html - 如何将伪元素对齐到底部

转载 作者:行者123 更新时间:2023-11-28 10:25:29 26 4
gpt4 key购买 nike

我试图在鼠标悬停在表格行上时创建阴影效果。我正在使用伪类 :after 在表格行的底部创建阴影效果。我能够获得阴影效果,但我想将伪元素与悬停行的底部对齐,现在阴影出现在行的顶部并且它没有占用行的确切宽度,它占用屏幕的整个宽度。

我该如何解决?

这是我所做的。

代码:

.highlight {
box-shadow: 0 2px 18px 0 rgba(0, 0, 0, .5)!important;
background: none;
}

table {
border-collapse: collapse !important;
}

table td {
padding: 10px
}

table tr:hover::after {
box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.5);
content: "";
height: 1px;
left: 15px;
position: absolute;
width: 100%;
z-index: 1 !important;
}
<div>
<table border="1px">
<tr>
<td></td>
<td bgcolor="grey">Header1</td>
<td bgcolor="grey">Header2</td>
<td bgcolor="grey">Header3</td>
<td bgcolor="grey">Header4</td>
<td bgcolor="grey">Header5</td>
</tr>
<tr>
<td bgcolor="grey" class="myCell">Row1</td>
<td class="myCell">
cell
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>
<tr>
<td bgcolor="grey" class="myCell">Row2</td>
<td class="myCell">
cell
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>
<tr>
<td bgcolor="grey" class="myCell">Row3</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>
</table>
</div>

最佳答案

您可以将伪元素应用于 td 并将其设置为 position:relative。使用 bottom:0,阴影会应用到底部。

.highlight {
box-shadow:0 2px 18px 0 rgba(0,0,0,.5)!important;
background: none;
}

table{
border-collapse: collapse !important;
}

table td{
padding: 10px;
position: relative;
}

table tr:hover td::after {
box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.5);
content: "";
width: 100%;
position: absolute;
height: 1px;
bottom: 0;
z-index: 1 !important;
}
<table border="1px">
<tr>
<td></td>
<td bgcolor="grey">Header1</td>
<td bgcolor="grey">Header2</td>
<td bgcolor="grey">Header3</td>
<td bgcolor="grey">Header4</td>
<td bgcolor="grey">Header5</td>
</tr>

<tr>
<td bgcolor="grey" class="myCell">Row1</td>
<td class="myCell">
cell
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>

<tr>
<td bgcolor="grey" class="myCell">Row2</td>
<td class="myCell">
cell
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>


<tr>
<td bgcolor="grey" class="myCell">Row3</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
<td class="myCell">
f
</td>
</tr>
</table>

关于html - 如何将伪元素对齐到底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53340153/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com