css圆角边框代码,css3中div圆角边框是怎么写的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css圆角边框代码,css3中div圆角边框是怎么写的相关的知识,希望对你有一定的参考价值。

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;;
参考技术A   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" />
  结果如下:

  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;;
  
  结果如下

  4
  圆角代码也支持拆分的(四个边框都圆角10px的拆分css代码如下):

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius:10px;
  border-bottom-left-radius: 10px;
参考技术B border-top或bottom-left或right-radius: 12px;

[css 揭秘]:CSS揭秘 技巧:边框内圆角

我的github地址:https://github.com/FannieGirl/ifannie/

源码都在这上面哦!

喜欢的给我一个星吧

边框内圆角

问题:有时候我们需要一个容器,只在内侧有圆角,而边框或描边的四个角在外部仍然保持直角的形状。

其实,以前我都是用两个div实现的。

技术分享

技术分享

解决方案

如果只需要达成简单的实色效果,我们还可以通过其他的方法。

描边 并不会跟着元素的圆角走(因而可以实现外层是直角),box-shadow 却是会的,因此把两者叠加到一起,box-shadow 会刚好填补 描边和容器圆角之间的空隙,这两者的组合达成了我们的理想效果。

例如:

技术分享

技术分享

演示地址:https://jsfiddle.net/Fannie/06sjmL6n/10/

这里引出了另一个问题了:到底多大的投影扩张可以填补这些空隙呢。

简单的方法就是 直接使用圆角半径的一半

这个方法有点hack的味道。

一般的情况下 还是用两个元素来实现吧。

后言:
如果你对基础的知识点已经很熟悉,你可以自动跳过。写上去的原因是查漏补缺,巩固一下基础。
如果有不对的地方,欢迎你来吐槽。
本文主要参考《CSS 揭秘》一书 以及w3school;
参考链接 :http://www.w3school.com.cn/cssref/pr_background-clip.asp





以上是关于css圆角边框代码,css3中div圆角边框是怎么写的的主要内容,如果未能解决你的问题,请参考以下文章

div css圆角边框怎么设置

CSS3实现圆角边框除了像素还能怎么弄?

怎样用css写出圆形边框

div+css如何实现圆角矩形

css3如何实现边框阴影

CSS3边框与圆角