我有以下代码,目标是显示名称而不将鼠标悬停在形状的中心,然后将鼠标悬停在具有5条直线的生物上,然后全部居中,并在换行符之间保持最小间距。
我的代码中的问题当前是将前端格式化为全部居中,并具有与悬停后相同的大字体,甚至更明显的是错误的—背面的信息从形状的末端消失了。没有居中。
<html>
<div id="box">
John Doe
<div id="overlay">
<span id="plus">Title:<br>DOB:<br>Hometown:<br>Info4:<br>Info5:</span>
</div>
</div>
<style>
body {
background: -1;
}
#box {
width: 300px;
height: 200px;
box-shadow: inset 1px 1px 40px 0 rgba(0, 0, 0, 0.45);
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
margin: 5% auto 0 auto;
background-size: cover;
border-radius: 5px;
overflow: hidden;
/* NEW */
line-height: 200px;
text-align: center;
position: relative;
}
#overlay {
background: rgba(0, 0, 0, 0.75);
text-align: center;
padding: 45px 0 66px 0;
opacity: 0;
-webkit-transition: opacity 0.25s ease;
-moz-transition: opacity 0.25s ease;
/* NEW */
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
#box:hover #overlay {
opacity: 1;
}
#plus {
font-family: Helvetica;
font-weight: 900;
color: rgba(255, 255, 255, 0.85);
font-size: 24px;
}
</style>
</html>
答案 0 :(得分:0)
这不是您所有问题的答案,但是要使字体样式相同,请将#plus的字体样式添加到#box选择器中。您必须将框选择器的颜色更改为黑色,对于#plus,您可以保留当前的颜色。