如何运用CSS写小三角】的更多相关文章

<html> <div class="con"></div> </html> <style> .con{width:0; height:0; border-width:10px; border-style:solid; border-color:#f40 #f40 transparent transparent;} </style>…
<!DOCTYPE html> /*直接复制代码即可在浏览器验证*/ <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> * { margin: 0; padding: 0; } /*盒子的样式*/ .box { position: relative; margin: 20px auto; he…
效果图如图1所示:(简单示范,有点丑,莫介意) PS:兼容IE,FF , chrome ,360安全浏览器 先讲下原理吧,如图2所示: 这个div的样式如下所示: div{ width: 0px; height: 0px; border-width: 20px; border-style: solid; border-color: lightgreen pink yellow lightblue; } 解释:当div的宽高为0时,设border的宽度并设颜色,会发现div像是被分割为4个小三角形…
先上一个简单的例子哈: 此时的方向向下. 如果想方向向上的话用:border-top:0;border-bottom:4px solid; 1. width:0 height:0 border宽度,颜色和透明实现. 有例子. http://www.igooda.cn/jzjl/20140401472.html 2. 还有一种利用图片.(效率没有纯css写的高,但是简单,推荐) 3. 利用一个小的文字图标. 这里边还有一个经典的absolute套absolute的例子. 4. 利用padding之…
视觉稿中经常有些小三角,如下图.每次用图片做太不方便了,我们看看用css实现的效果(支持ie6,7哦) <style> /*border实现三角*/ /*箭头向上*/ .arrow-top{ width : 0; height : 0; font-size : 0; line-height : 0; border-left: 5px dashed transparent; border-right: 5px dashed transparent; border-bottom: 5px soli…
上三角▲ width: 0; height: 0; line-height: 0; font-size: 0; border-width: 10px; border-style: solid; border-color: transparent transparent #000 transparent; 下三角▼ width: 0; height: 0; line-height: 0; font-size: 0; border-width: 10px; border-style: solid;…
今天在项目中遇到了如下图的切图要求. 对,重点就是那个小三角提示符号. html 结构如下 <div class="wrap"> <div class="up-arr1"></div> <div class="up-arr2"></div> </div> css 结构如下: .wrap { position: relative; } .up-arr1 { position:…
在网站制作的过程中常涉及一些小图标,以前大部分会采用小图片.但有了css3后很多变得方便了,比如要在li列表的每行文字的前面加个小三角,可以这么写: <!DOCTYPE html> <html> <head> <meta charset="gb2312"> <title>ces</title> <style> a{ text-decoration: none; color: #666; } ul{ li…
<style> .box{ width: 20px; height: 20px; background-color: #424; border: 10px solid #9C27B0; border-top: 15px solid green; } </style> <div class="box"></div> 这里我们可以看到一个梯形(实现小三角就是靠这个梯形) 我们把box宽度设为0看看 它现在已经可以看到一个小三角了 我们再将紫色…
前言:小三角的应用场景:鼠标移动到某个按钮上面,查看信息详情时,信息详情弹出框有时候会需要一个小三角. 代码如下: <div id='triangle'></div> #triangle{ border-bottom: 10px solid #ccc; border-left: 8px solid transparent; border-right: 8px solid transparent; height:; margin-left: 97px; width:; }…