当鼠标悬停在此css规则上时,如何让边框增大?
.script_list > div:first-child,
.script_list > div.ui-sortable-helper {
border-width: 1px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
答案 0 :(得分:1)
只需使用:hover
后缀:
.script_list > div:first-child:hover,
.script_list > div.ui-sortable-helper:hover {
border-width: 2px;
}
答案 1 :(得分:1)
这是一个基本的working example.
使用:hover
状态的基本CSS非常简单。使用box-sizing
属性可确保您的整体框尺寸(以及随后的布局)不会受到影响,如果这不是预期的效果。
<强> CSS 强>
.frame {
border: 1px solid black;
height: 200px;
width: 200px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.frame:hover {
border-width: 10px;
}
<强> HTML 强>
<div class="frame"></div>