- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在这张 table 上,我应用了一个 CSS来自这里的例子 http://gridviewscroll.aspcity.idv.tw/Demo.aspx和例子 https://github.com/twlikol/GridViewScroll
<table cellspacing="0" id="gvMain2" style="width: 100%; border-collapse: collapse;">
<tr class="GridViewScrollHeader">
<th>StandardCost</th>
<th>ListPrice</th>
<th>SafetyStockLevel</th>
<th>SellStartDate</th>
<th>SellEndDate</th>
<th>ModifiedDate</th>
<th>ProductID</th>
<th>Name</th>
<th>Number</th>
<th>ReorderPoint</th>
<th>Weight</th>
</tr>
<tr class="GridViewScrollItem">
<td>747</td>
<td>HL Mountain Frame - Black, 38</td>
<td>FR-M94B-38</td>
<td>375</td>
<td>2.68</td>
<td>739.0410</td>
<td>1349.6000</td>
<td>500</td>
<td>7/1/2001 12:00:00 AM</td>
<td> </td>
<td>3/11/2004 10:01:36 AM</td>
</tr>
</table>
CSS section Header 可以指定颜色
.GridViewScrollHeader TH,
.GridViewScrollHeader TD {
padding: 10px;
font-weight: normal;
white-space: nowrap;
border-right: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
background-color: cornflowerblue;
color: palegoldenrod;
text-align: left;
vertical-align: bottom;
cursor:default;
}
CSS section Item at level TD 分配颜色和边框,当事件 TD:hover 被触发时单元格改变颜色
.GridViewScrollItem TD {
padding: 10px;
white-space: nowrap;
border-right: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
/*background-color: lemonchiffon;*/
color: blue;
background-color: gray;
/*cursor: pointer;*/
}
/* this work and change color at cell level */
.GridViewScrollItem TD:hover {
background-color: yellow;
cursor: pointer;
}
CSS 悬停在水平行 ??在线,TR level 不触发悬停事件,好像没有说明,当然是我的错误,即使引用 TR 似乎是正确的。
/* this section not have effect
- the cursor not change form
- the background color not change
*/
.GridViewScrollItem TR {
background-color: #b8d1f3;
}
.GridViewScrollItem TR:hover {
/* background-color: #00C080FF; */
background-color: yellow;
cursor:pointer;
}
最佳答案
行颜色确实发生了变化,但在彩色 TD 之下。因此,将效果直接应用于列:
.GridViewScrollItem:hover TD {
/* background-color: #00C080FF; */
background-color: yellow;
cursor:pointer;
}
此外,.GridViewScrollItem
是您提到的实际 TR,所以基本上您的原始 CSS 规则说:
tr tr:hover {};
关于html - CSS 悬停在水平行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47305686/
这个问题在这里已经有了答案: Can I get `cabal install` to use multiple cores? (3 个回答) 关闭 7 年前。 在使用类似于 GNU make 的 -
我正在尝试通过 akeeba backup 在 parallels plesk 面板中安装一个 joomla 站点。我在哪里面临文件权限问题。 An error occured Could not o
我在 MATLAB 中使用箱线图函数。我需要为 6 个“XTicks”绘制 6 个不同数据集的箱线图,即 x 轴上的每个刻度线应包含 6 个相应的框、晶须、中线和其域内的异常值集。我尝试通过为每个变量
我需要在 Kaplan Meier 图上呈现 at_risk 数字。 最终结果应该与此类似: 我在渲染时遇到的问题是 No。处于危险中的患者数量位于图表底部。此处显示的值对应于 x 轴上的值。因此本质
我想知道你们中的任何一个人为什么知道我的表现糟透了吗? 我正在努力实现的目标; 生成220万个文件。要创建每个文件,平均需要2-5个数据库调用。 我正在使用的服务器具有24个内核和190GB的RAM。
请帮忙。我正在研究具有此要求的算法。 给定 4 个“右”矩形(右矩形的边平行于 x 或 y),找出它们中的任何一个覆盖的区域 例如,灰色区域被下图中的 4 个矩形中的任何一个覆盖。 enter ima
我是一名优秀的程序员,十分优秀!