码迷,mamicode.com
首页 > Web开发 > 详细

css 仿京东三角形案例

时间:2020-05-19 13:06:07      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:top   order   lan   utf-8   osi   doc   border   css   tran   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div {
position: relative;
width: 200px;
height: 100px;
background-color: pink;
margin:100px;
}

p {
position: absolute;
top: -20px;
left: 50%;
margin-left: -10px;
width: 0;
height: 0;
border-style: solid;
border-width: 10px;
border-color: transparent transparent pink transparent;
font-size: 0;
line-height: 0;
}
</style>
</head>
<body>
<div>
<p></p>
</div>
</body>
</html>

css 仿京东三角形案例

标签:top   order   lan   utf-8   osi   doc   border   css   tran   

原文地址:https://www.cnblogs.com/ericblog1992/p/12915974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!