css3 圆角

代码块

html页面:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>css3 圆角</title>

</head>

<body>

<div class="div-common radiusAttr">CSS3 圆角属性</div>

<div class="div-common twoRadius">两个值</div>

<div class="div-common threeRadius">三个值</div>

<div class="div-common fourRadius">四个值</div>

<div class="div-common bgimgradius">指定背景图片的元素圆角</div>

<div class="div-common borderradius">指定边框的元素圆角</div>

<div class="div-common bgradius">指定背景颜色的元素圆角!</div>

<div class="borderRadius">border-radius 属性允许您为元素添加圆角边框!</div>

</body>

</html>

css样式:

<style type="text/css" media="screen">

div{

margin:50px;

}

.borderRadius{

border:2px solid #a1a1a1;

padding:10px 40px;

background-color: #ddd;

width: 300px;

border-radius:25px;

}

.div-common{

width: 200px;

height: 150px;

padding: 20px;

}

.bgradius{

background-color: #8AC007;

border-radius: 25px;

}

.borderradius{

border:1px solid #8AC007;

border-radius: 25px;

}

.bgimgradius{

border-radius: 25px;

background:url(pulpitrock.jpg) repeat left top;

}

.fourRadius{

background-color: #8AC007;

border-radius: 15px 50px 30px 5px;

}

.threeRadius{

background-color: #8AC007;

border-radius: 15px 50px 30px;

}

.twoRadius{

background-color: #8AC007;

border-radius: 15px 50px;

}

.radiusAttr{

background-color: #8AC007;

/*border-radius: 20px;*/

border-top-left-radius: 20px;

border-top-right-radius: 20px;

border-bottom-left-radius: 20px;

border-bottom-right-radius: 20px;

}

</style>

时间: 2024-10-13 06:20:33

css3 圆角的相关文章

让IE浏览器支持CSS3圆角属性的方法

如果要想在IE浏览器中实现圆角的效果,我们一般都会采用圆角图片的方式.用图片的话,基本就跟浏览器没有多大关系了,因为任何浏览器都支持这种方式.今天我们主要是讲解如果用CSS3样式表来实现圆角效果,值得注意的是,IE6/7/8这三个IE浏览器版本都不支持CSS3的解析,只有还不太主流的IE9支持CSS3和HTML5的标准.让IE支持CSS3的解析方法有很多种,(HTML5 Shiv – 让该死的IE系列支持HTML5吧)下面介绍一种实用的让IE支持CSS3解析的方法——IE利用VML矢量可标记语言

PIE使IE支持CSS3圆角盒阴影与渐变渲染

PIE使IE支持CSS3圆角盒阴影与渐变渲染 http://css3pie.com/download/

转 CSS3圆角圆边 支持IE6-IE8浏览器

文章出处和来源网址:http://www.divcss5.com/css-texiao/texiao571.shtml 非常简单实用,兼容ie----不转对不起程序员 CSS3圆角圆边样式,支持各大版本浏览器,包括支持IE6-IE9浏览器的圆边圆角. 本文我们主要是讲解如果用CSS 3样式表来实现圆角效果,值得注意的是,IE6/7/8这三个IE浏览器版本都不支持CSS3的解析,只有还不太主流的IE 9支持CSS 3和HTML 5的标准.让IE支持CSS 3的解析方法有很多种,下面介绍一种实用的让

IE兼容CSS3圆角border-radius的方法

IE兼容CSS3圆角border-radius的方法 优化网站js效果,网上看见一个很简单方便的兼容圆角的方法,记下来. 和大家分享一下,知道的高手就当捧个过场.嘻嘻 1.下载border-radius.htc 2.CSS .radius{ -moz-border-radius: 11px; -webkit-border-radius: 11px; border-radius: 11px; behavior: url(border-radius.htc); } 优点: 一.最为方便让IE实现圆角

css3圆角详解

css3(border-radius)边框圆角详解 传统的圆角生成方案,必须使用多张图片作为背景图案.CSS3的出现,使得我们再也不必浪费时间去制作这些图片了,只需要border-radius属性,支持浏览器IE 9.Opera 10.5.Safari 5.Chrome 4和Firefox 4 一.border-radius属性 CSS3圆角只需设置一个属性:border-radius(含义是"边框半径").你为这个属性提供一个值,就能同时设置四个圆角的半径.所有合法的CSS度量值都可

css3圆角和渐变2种常用功能详解

Css3圆角讲解:想必大家对于图片,背景圆角,都不陌生吧, 圆角语法:border-radius:圆角值: 这个值可以使用:em ,ex,pt,px,百分比; Border-radius跟margin,padding差不多 Border-radius:lefttop,righttop,rightbottom,leftbottom. <div class="box1"></div> .box1{width:200px;height:100px;border-rad

CSS3圆角导航菜单

<!DOCTYPE HTML><html><head><title>石家庄渣浆泵</title><style type="text/css">*{margin: 0;padding: 0;}body {background-color: #434343;color: #fff;font-family: 'Courgette', cursive;padding: 50px;text-align: center;}a

CSS3圆角

使用border-radius属性: (1): (2)但是,如果你要在四个角上一一指定,可以使用以下规则: 四个值: 第一个值为左上角,第二个值为右上角,第三个值为右下角,第四个值为左下角. 三个值: 第一个值为左上角, 第二个值为右上角和左下角,第三个值为右下角 两个值: 第一个值为左上角与右下角,第二个值为右上角与左下角 一个值: 四个圆角值相同 (3)CSS3圆角边框可指定 a:background:#--   背景颜色 b:border:-- -- --     边框 c:backgro

CSS3 圆角制作的消息提示图标

CSS3 圆角制作的消息提示图标,如果你想知道它是如何被开发的,请点击连接查看.http://www.gbtags.com/gb/rtreplayerpreview/142.htm