看似简单的前端小功能,却弄不出来,您 我这就是新手呢? 是不是?
<!DOCTYPE html>
<html lang="en">
<head>
<Meta charset="UTF-8">
<Meta http-equiv="X-UA-Compatible" content="IE=edge">
<Meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>背景案例</title>
<style>
/* mcanguage 容器*/
/* 加了下划线,不能显示呢 problem1 */
.mclanguage {
width: 141px;
height: 70px;
/* background-color: blueviolet; */
line-height: 70px;
/* 背景图片默认平铺 */
background-image: url(../CSSLibrary/img/lcicon.png);
/* 背景不平铺 */
background-repeat: no-repeat;
background-position: left center;
/* problem2 背景图片尺寸改下显示,怎么修改? */
/* 缩进文字 */
text-indent: 3em;
font-size: 17px;
/* 滑过提示 */
position: relative;
display: inline-block;
/* */
}
/* 文本语言提示 */
.mclanguage .language {
visibility: hidden;
width: 200px;
height: 100px;
background-color: rgb(131, 20, 20);
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
position: absolute;
z-index: 1;
display: none;
}
/* 文本语言提示 */
.mclanguage .language1 {
visibility: hidden;
width: 200px;
height: 100px;
background-color: rgb(131, 20, 20);
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
position: absolute;
z-index: 1;
display: none;
}
/* 鼠标滑过样式设置 */
.mclanguage:hover .language {
display: block;
visibility: visible;
}
/* 中文 */
.mclanguage:hover .language1 {
display: block;
visibility: visible;
}
.spandemo {
font-size: 17px;
/* vertical-align: middle; */
}
</style>
</head>
<body>
<!--
1
-->
<div class="mclanguage"> 选择语言
<span class="language"> English</span>
</div>
<!-- <div class="mclanguage"> 选择语言
<span class="language1"> 中文</span>
</div> -->
</body>
</html>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。