首页 > 代码库 > css 绘制对话框三角符号
css 绘制对话框三角符号
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<style>
.tip {
position: relative;
background-color: deepskyblue;
margin: 20px auto;
width: 246px;
height: 43px;
line-height: 43px;
color: white;
text-align: center;
border-radius: 10px;
font-family: sans-serif;
}
.tip:after {
content: ‘‘;
position: absolute;
width: 0;
height: 0;
border: 8px solid;
}
.top:after {
border-bottom-color: deepskyblue;
left: 50%;
bottom: 100%;
margin-left: -15px;
}
.right:after {
border-left-color: deepskyblue;
left: 100%;
top: 50%;
margin-top: -7px;
}
.bottom:after {
border-top-color: deepskyblue;
top: 100%;
left: 50%;
margin-left: -15px;
}
.left:after {
border-right-color: deepskyblue;
top: 50%;
right: 100%;
margin-top: -9px;
}
</style>
</head>
<body>
<div class="tip top">top</div>
<div class="tip bottom">bottom</div>
<div class="tip left">left</div>
<div class="tip right">right</div>
</body>
</html>
css 绘制对话框三角符号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。