html5+css3中的rotate的属性 实现网 页上角标的效果
本帖最后由 ℡淺笑如夏 于 2019-10-15 19:37 编辑html5+css3中的rotate的属性 实现网 页上角标的效果
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>制作角标的方法wuti5.com</title>
<style>
.con{
height: 250px;
width: 200px;
margin: 0 auto;
overflow: hidden;
margin-top: 100px;
position: relative;
background-color: #4cd964;
}
.subscript{
color: #fff;
height: 30px;
width: 100px;
position: absolute;
right: -30px;
text-align: center;
line-height: 30px;
font-family: "黑体";
background-color: #0c60ee;
-moz-transform:rotate(45deg);
-webkit-transform:rotate(45deg);
-o-transform:rotate(45deg);
-ms-transform:rotate(45deg);
transform:rotate(45deg);
}
</style>
</head>
<body>
<div class="con">
<div class="subscript">
角标
</div>
</div>
</body>
</html>
网址演示:https://wuti5.com/jquery/css3/jiaobiao.html
页:
[1]