源码论坛,商业源码下载,尽在锦尚中国商业源码论坛
标题:
超实用代码用CSS3实现带小三角形的div框(不用图片)
[打印本页]
作者:
欧阳锋
时间:
2020-11-17 14:41
标题:
超实用代码用CSS3实现带小三角形的div框(不用图片)
现在的diy框架排版已经不像几年前那种中规中矩的布局了,最近在做前端技术发来的界面要求的时候遇到很多这种css代码,分享给大家!
(, 下载次数: 62)
上传
点击文件名下载附件
代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
.tag
{
width: 300px;
height: 100px;
border: 5px solid #09F;
position: relative;
}
.tag em
{
display: block;
border-width: 20px;
position: absolute;
bottom: -40px;
left: 100px;
border-style: solid dashed dashed;
border-color: #09F transparent transparent;
font-size: 0;
line-height: 0;
}
.tag span
{
display: block;
border-width: 20px;
position: absolute;
bottom: -33px;
left: 100px;
border-style: solid dashed dashed;
border-color: #FFF transparent transparent;
font-size: 0;
line-height: 0;
}
</style>
</head>
<body>
<div class="tag">
<em></em>CSS气泡框实现
</div>
<div class="tag" style="margin-top: 100px">
<em></em><span></span>CSS气泡框实现
</div>
</body>
</html>
复制代码
欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/)
Powered by Discuz! X3.3