css 兼容小三角
<!DOCTYPE>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css" >
.index_nav a:hover i, .index_nav a.on i {
display: inline-block;
width: 0;
height: 0;
font-size: 0;
overflow: hidden;
position: absolute;
bottom: -26px;
left: 50%;
border: 13px dashed transparent;
border-top: 13px solid #ea331a;
}
</style>
</head>
<body>
<div class="index_nav clearfix">
        <a href="javascript:;" class="on">12月17日<i></i></a>
 </div>
</body>
</html>
效果截图:

------------2015.1.19补充更新-------------------
移动端三角可以利用伪类 直接省略掉空标签:
html:
<h2>全部最新上架</h2>
css:
h2:after{
	 position: absolute;
	margin-left: 50%;
	left: 50px;
	top: 9px;
	/*border: 6px dashed transparent;
	border-left: 6px solid rgba(255,255,255,1);*//*兼容的三角写法*/
content:'';
	 border-color:transparent transparent transparent rgba(255,255,255,1);
	 border-width:6px 9px;
	 border-style:solid;
}
css 兼容小三角的更多相关文章
- css实现小三角(原理)
		
效果图如图1所示:(简单示范,有点丑,莫介意) PS:兼容IE,FF , chrome ,360安全浏览器 先讲下原理吧,如图2所示: 这个div的样式如下所示: div{ width: 0px; h ...
 - CSS的小三角
		
上三角▲ width: 0; height: 0; line-height: 0; font-size: 0; border-width: 10px; border-style: solid; bor ...
 - css制作小三角
		
视觉稿中经常有些小三角,如下图.每次用图片做太不方便了,我们看看用css实现的效果(支持ie6,7哦) <style> /*border实现三角*/ /*箭头向上*/ .arrow-top ...
 - 用CSS制作小三角提示符号
		
今天在项目中遇到了如下图的切图要求. 对,重点就是那个小三角提示符号. html 结构如下 <div class="wrap"> <div class=" ...
 - CSS实现小三角小技巧
		
<style> .box{ width: 20px; height: 20px; background-color: #424; border: 10px solid #9C27B0; b ...
 - CSS生成小三角
		
前言:小三角的应用场景:鼠标移动到某个按钮上面,查看信息详情时,信息详情弹出框有时候会需要一个小三角. 代码如下: <div id='triangle'></div> #tri ...
 - 纯css制作小三角
		
在网站制作的过程中常涉及一些小图标,以前大部分会采用小图片.但有了css3后很多变得方便了,比如要在li列表的每行文字的前面加个小三角,可以这么写: <!DOCTYPE html> < ...
 - css的小三角实现的方式
		
先上一个简单的例子哈: 此时的方向向下. 如果想方向向上的话用:border-top:0;border-bottom:4px solid; 1. width:0 height:0 border宽度,颜 ...
 - (转载) css实现小三角(尖角)
		
在各种网站里面,我们会经常看到类似于这样的尖角:(示例:新浪微博) 它实现的方式有多种,哪种才是最简单的?哪种才是最优秀的?首先我声明一下,我还不清楚这个东西具体叫什么名字(哪位知道还望告知),暂且叫 ...
 
随机推荐
- contentProvider内容提供者
			
contentProvider内容提供者 15. 四 / android基础 / 没有评论 步骤 权限在application中注册 Source code <provider an ...
 - 用php逐行读取文件
			
做个备份年纪大了,都不愿意自己思考了 $str = file_get_contents($tmpfilename);//获得内容 $arr = explode("\n",$str) ...
 - python运维开发(十七)----jQuery续(示例)web框架django
			
内容目录: jQuery示例 前端插件 web框架 Django框架 jQuery示例 dom事件绑定,dom绑定在form表单提交按钮地方都会绑定一个onclick事件,所有查看网站的人都能看到代码 ...
 - Typecho 代码阅读笔记(三) - 插件机制
			
转载请注明出处:http://blog.csdn.net/jh_zzz 以 index.php 为例: /** 初始化组件 */ Typecho_Widget:: widget('Widget_Ini ...
 - SPI 四种模式
			
SPI时钟极性CPOL, = 0表示在没有数据传输时为低电平,= 1表示没有数据传输时为高电平. SPI时钟相位CPHA,= 0表示时钟的第一个沿更新数据.第二个沿锁存数据,= 1表示时钟的第一个沿锁 ...
 - java实现文件编码监测
			
java实现文件编码监测 最近在做一个文档的翻译项目,可文档的编码不知道,听头疼的.尝试了很多方法最后发现JCharDet这个工具可以轻松解决这个问题.于是作此笔记希望日后提醒自己以及帮助又需要的人. ...
 - 软件体系结构经典问题——KWIC的分析和解决
			
KWIC作为一个早年间在ACM的Paper提出的一个问题,被全世界各个大学的软件设计课程奉为课堂讲义或者作业的经典.(From Wiki,FYI,D. L. Parnas uses a KWIC In ...
 - Median of Two Sorted Arrays 解答
			
Question There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median o ...
 - python定时器爬取豆瓣音乐Top榜歌名
			
python定时器爬取豆瓣音乐Top榜歌名 作者:vpoet mail:vpoet_sir@163.com 注:这些小demo都是前段时间为了学python写的,现在贴出来纯粹是为了和大家分享一下 # ...
 - hihoCoder #1234 : Fractal(数学简单题)
			
时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 This is the logo of PKUACM 2016. More specifically, the logo i ...