Files
Simple_Drawing/static/css/pictures.css
2021-10-19 22:55:41 +08:00

26 lines
598 B
CSS

.example_box a {
text-decoration: none;
font-size: 14px;
color: #FFFFFF;
background: #1E9FFF;
text-align: center;
padding:15px;
border-radius: 2px;
}
.example_box img {
display: none;
width: 643px;
height: auto;
position: absolute;
/*如果大盒子不想被撑开高或者图片位置不是想要的位置,就给定位子绝父相,*/
left: 823px;
top: 85px;
}
.example_box a:hover>img {
/*鼠标放在a上图片显示*/
display: block;
}