div+css 画三角形

<style type="text/css">
.rightdirection
{
    width:0;height:0;
    line-height:0;
    border-width:20px;
    border-style:solid;
    border-color:transparent transparent transparent #A9DBF6;
}
.bottomdirection
{
    width:0;height:0;
    line-height:0;
    border-width:20px;
    border-style:solid;
    border-color: #A9DBF6 transparent transparent transparent;
}
.leftdirection
{
    width:0;height:0;
    line-height:0;
    border-width:20px;
    border-style:solid;
    border-color: transparent #A9DBF6  transparent transparent;
}
.topdirection
{
    width:0;height:0;
    line-height:0;
    border-width:20px;
    border-style:solid;
    border-color: transparent transparent #A9DBF6 transparent;
}
.topdirection1
{
    width:0;height:0;
    line-height:0;
    border-width:20px;
    border-style:solid;
    border-color: #A9DBF6   transparent transparent #A9DBF6 ;
}
</style>
<div  class="rightdirection"></div>
<p>
<div  class="bottomdirection"></div>
<p>
<div  class="leftdirection"></div>
<p>
<div  class="topdirection"></div>  

<br/><br/><br/><br/>
<div  class="topdirection1"></div>

  

时间: 2024-10-11 17:53:57

div+css 画三角形的相关文章

div+css画一个小猪佩奇

用DIV+CSS画一个小猪佩奇,挺可爱的,嘻嘻. HTML部分(全是DIV) <!-- 小猪佩奇整体容器 --> <div class="pig_container"> <!-- 尾巴 --> <div class="tail_left"></div> <div class="tail_right"></div> <div class="tail_

使用CSS画三角形

很多时候我们会遇到需要应用三角形元素的场景,比如一个下拉菜单的交互提示: 或者一个页旁的装饰性标签: 实际上,给页面添加三角形的解决方案有很多,用CSS.SVG.Canvas,甚至用PS画一个贴上去都可以,但是我们在考虑解决方案时一定要选择最优的那个.可以肯定的是,当对三角形的功能需求比较简单和单一的时候,图片是首先被排除的方案.图片的难以维护性为页面的调试和修改都带来了一定的困难,所以当一个问题可以用代码来解决的时候我们一定要首先考虑它.再来考虑Canvas,尽管Canvas相对容易修改,但它

CSS画三角形的原理

今天遇到一个无序列表,每一行的开始都要用一个小三角形,像这样,如果在以前,我肯定直接放图片进去了,然而学习了CSS后,我认为CSS一定能完成这个小图形. 关键需要把元素的宽度.高度设为0. 原理如下: 首先,写一个with和height都是40px的div,border宽度也是40px,看看是什么效果? HTML代码: <div class="triangle"></div> css代码: .triangle {     width: 40px;     hei

Div+Css画太极图源代码

<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Div+Css太极图</title> <style type="text/css"> .circle{ width: 100px; height: 50px; border:1px solid black; border-radius: 100px; position

用css画三角形

当我们给某个图片做一个弹出层的时候,如果要让我们的弹出层显示一个小箭头,可以用css来画 用div来演示 div{ border:12px solid; berder-color:transparent green transparent transparent; height:0; width:0; } 这样就可以显示一个小三角形

CSS画三角形集锦

triangle_up 向上三角形代码: <style type="text/css"> .tri-up { border-color: #FFF #FFF #EED2EE #FFF; border-style: solid; border-width: 0 60px 100px 60px; height: 0; width: 0; } .tri-up-transparent { width: 0; height: 0; border-left: 60px solid tr

css画三角形

效果图: 代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>三角形</title> <style> #tri{ width: 0; height: 0; border-top: 0 solid transparent; border-left: 10px solid transparen

2016/2/24 css画三角形 border的上右下左的调整 以及内区域的无限变小 背景透明

网页因为 CSS 而呈现千变万化的风格.这一看似简单的样式语言在使用中非常灵活,只要你发挥创意就能实现很多比人想象不到的效果.特别是随着 CSS3 的广泛使用,更多新奇的 CSS 作品涌现出来. 今天给大家带来 CSS 三角形绘制方法代码如下: 1 #triangle-up { 2 width: 0; 3 height: 0; 4 border-left: 50px solid transparent; 5 border-right: 50px solid transparent; 6 bord

CSS 画三角形

.crossSquare { height: 0px; width: 0px; border-bottom: 50px solid #006633; border-left: 50px solid transparent; border-right: 50px solid transparent; } <div class="crossSquare"></div>