css代码:
.yj{
padding:10px; width:300px; height:50px;
border: 2px solid #000000;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius:15px;
}
-moz-border-radius: 15px; -webkit-border-radius: 15px; 那两个是为了兼容其他一些不常用阅读写的css圆角代码
html代码:
div class="yj"那个div四个角都圆15px;/div
成果如下:
图片圆角也是一样的:
css代码:
.yj{-moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius:15px;}
html代码:
img src="xp.jpg" width="100px" height="100px;" class="yj" /
成果如下:
3
css3圆角代码也撑持上下摆布的:
css代码那么写:
.yj{
padding:10px; width:300px; height:50px;
border: 2px solid #000000;
-moz-border-radius: 0px 0px 20px 25px
-webkit-border-radius: 0px 0px 20px 25px
border-radius:0px 0px 20px 25px
}
CSS3边框与圆角属性:一个最多可指定四个border-*-radius属性的 契合属性 ,那个属性容许 你为元素添加圆角边框!
语法:border-radius:1-4 length|% / 1-4length|%
【length可为肆意长度单元,好比px、em。
当利用%的时候,相对的不是字体的大小而是对应边的长度的百分比,例如border-top-left-radius:50%,那么左上角的圆角在右边的弧度是边框右边长度的50%、在上边的弧度是边框上边长度的50%;
因而假设 设置border-radius:50%,那么边框将会变成一个椭圆】
兼容性:IE9+、Firefox4+,Chrome,Safari5+,Opera
-------------------------------------------------
CSS3指定每个圆角:
多值:
border-radius(四个值):左上角 右上角 右下角 左下角
border-radius(三个值):左上角 右上角和左下角 右下角
border-radius(两个值):左上角和右下角 右上角和左下角
border-radius(一个值):四个圆角值不异
border-top-left-radius:定义了左上角的弧度
border-top-right-radius:定义了右上角的弧度
border-bottom-left-radius:定义了右下角的弧度
border-bottom-right-radius:定义了左下角的弧度
box-shadow属性:能够设置一个或多个下拉暗影的框
语法:
box-shadow:h-shadow(程度位置偏移量)容许 负值。必写;
v-shadow(处置位置偏移量)容许 负值。必写;
blur(模糊间隔)可选;
spread(暗影尺寸)可选;
color(暗影颜色)可选;
inset(内部暗影)可选;扩展属性,正值缩小,负值增大
box-shadow: 10px(横向,正值往右,负值往左) 10px(纵向,正值往下,负值网上) 10px(模糊,从边框到内容,完成渐变模糊) 10px(扩展,四面 鸿沟往外扩展10px) yellow(暗影颜色)
border-image
属性:利用border-image-*属性来构建标致 的可扩展按钮
语法:border-image:source slice width outset repeat;
兼容性:IE不兼容、Firefox、Chrome、Safari6+、Opera不兼容
-------------------------------------------------
border-image-source属性
border-image-source属性指定要利用的图像,而不是由border-style属性设置的边框款式
语法
border-image-source:none;
border-image-source:url("...");
-------------------------------------------------
border-image-slice属性
border-image-slice属性指定图像的鸿沟向内偏移
语法
border-image-slice:number|%|fill;
-------------------------------------------------
border-image-width属性
brder-image-width属性指定图像鸿沟的宽度
语法
border-image-width:number|%|auto;
-------------------------------------------------
border-image-outset属性
border-image-outset用于指定在边框外部绘造border-image-area的量
语法
border-image-outset:length|number;
-------------------------------------------------
border-image-repeat属性
该属性用于图像鸿沟能否反复(repeated)、拉伸(stretched)或展 满(rounded)
语法:border-image-repeat:stretch|repeat|round|initial|inherit;
css3 怎么实现border-image圆角的问题
我说两种办法哈:
1、上层DIV和img标签都设置border-radius圆角
列:
css如下:
.div1{width:100px;height:100px;border:1px solid lightgray;border-radius:5px;}
.div1 img{width:100px;height:100px;border-radius:5px;}
html如下:
div class="div1"
img src="img1.jpg"
/div
2、img不设置,div设置border-radius圆角而且设置超出部门影躲
css如下:
.div1{width:100px;height:100px;border:1px solid lightgray;border-radius:5px;overflow:hidden;}
html如下:
div class="div1"
img src="img1.jpg"
/div
重视 :img标签要设置大小哈,否则图像展现 会超出DIV的鸿沟的
CSS3圆角布景圆角次要是通过border-radius 来实现:
border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。
提醒:该属性容许 为元素添加圆角边框。
简单的例子,仅供参考:
style
.box {margin:100 auto; width:200px; height:200px; position:relative;}
.shadow {width: 200px; height:200px; background:#ccc; border-radius:10px;}
.xxx {width:150px; height:150px; background:red; position:absolute;}
/style
body
div class="box"
div class="shadow"/div
div class="xxx"/div
/div
/body