Heim >Web-Frontend >HTML-Tutorial >DIV+CSS 斜线效果_html/css_WEB-ITnose

DIV+CSS 斜线效果_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:31:591261Durchsuche

DIV+CSS 斜线效果很简单,只需设置一下CSS Border 的边框就能有斜线效果。代码分享给大家,你可以自己变通。

http://www.admin10000.com 提示要注意两点:1、DIV宽高的定义。2、DIV在 IE6 中默认是有高度的。

上图右边是我们要实现的效果,代码如下:

<div id="box"></div><style type="text/css">#box{    width:0px; height:0px;    border:40px solid #000;    border-top-color:#930;    border-bottom-color:#0C3;    border-left-color:#FC0;    border-right-color:#009;}</style>

在FF IE7 IE8 都显示正常,但在IE6中,却如上图左边所示,中间有差距,因此,需要加一行:

line-height:0px;

最终代码如下:

<div id="box"></div><style type="text/css">#box{    width:0px; height:0px;    border:40px solid #000;    border-top-color:#930;    border-bottom-color:#0C3;    border-left-color:#FC0;    border-right-color:#009;    line-height:0px;}</style></head>

更多请收听腾讯微博: http://t.qq.com/admin10000_com 

更多请关注新浪微博:http://weibo.com/admin1w 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn