六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 261|回复: 0

css实现对话框箭头效果

[复制链接]

升级  12.67%

19

主题

19

主题

19

主题

秀才

Rank: 2

积分
69
 楼主| 发表于 2013-2-8 00:46:08 | 显示全部楼层 |阅读模式
用css实现对话框箭头效果 mark一下

<!DOCTYPE html><html><head><meta charset=utf-8 /><title>JS Bin</title><style>.test{    width:300px;     top:20px;    padding:30px 20px;    border:5px solid #beceeb;     position:relative;}.test span{    width:0; height:0; font-size:0;    position:absolute;}.test span.bot{    border-width:20px;     border-style:solid;     border-color:transparent transparent #beceeb;     left:80px;     top:-40px;}.test span.top{    border-width:20px;     border-style:solid;     border-color:transparent transparent #ffffff;     left:80px;     top:-33px;}</style></head><body>  <div class="test">    <span class="bot"></span>    <span class="top"></span>    CSS “边框法”实现气泡对话框效果二</div></body></html>

在ie7/8上 overflow:hidden,border-style:dashed好像支持的不好,于是为了兼容性,把原文的这两条去掉,另外要重设一下margin-top。
原文出处 http://www.jb51.net/css/33743.html
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表