美文网首页
26-边框圆角基本概念

26-边框圆角基本概念

作者: 晚溪呀 | 来源:发表于2018-09-17 16:32 被阅读0次
  1. 边框圆角的作用:将原始的直角变为圆角

    *  格式:border-radius: 100px 0px 0px 0px;;
       按照左上/右上/右下/左下的顺序
    
    
    *  格式:border-radius: 100px 80px 40px;
       按照左上/右上和左下/右下的顺序
    
    
    *  格式:border-radius: 100px  40px;
       按照左上/右下和右上和左下的顺序
    
    
    *  格式:border-radius: 100px ;
       如果省略三个参数, 其它角会和它一样
    
    
    *  格式:border-radius: 50% ;
       如果指定的半径是当前元素宽高的一半, 那么就是一个圆形
    
  2. 单独绘制指定圆角和椭圆

  • 单独指定某一个角的半径
    border-top-left-radius:100px;
    border-top-right-radius:100px;
    border-bottom-left-radius:100px;
    border-bottom-right-radius:100px;
    
  • 如果传递了两个参数, 那么第一个参数代表水平方向的半径, 第二个参数代表垂直方向的半径
    border-top-left-radius:100px 50px;
    border-top-right-radius:100px 50px;
    border-bottom-left-radius:100px 50px;
    border-bottom-right-radius:100px 50px;
    
  • 每条边都设置50%就是一个圆形
    border-top-left-radius:50%;
    border-top-right-radius:50%;
    border-bottom-left-radius:50%;
    border-bottom-right-radius:50%;
    简写:border-radius:50%;
    
  •  斜杠之前的代表左上/右上/右下/左下的水平方向的半径
     斜杠之后的代表左上/右上/右下/左下的垂直方向的半径
     border-radius:100px 100px 100px 100px/50px 50px 50px 50px;
     border-radius:100px/50px;
    
  1. 绘制半圆
  • 如果边框的宽度小于圆角的半径, 那么内圆和外圆都是圆弧形状
    如果边框的宽度大于或者等于圆角的半径, 那么内圆就会变成直角而不是圆角

     margin: 100px auto;
     width: 200px;
     height: 200px;
     border:100px solid #000;
     border-radius: 110px;

相关文章

  • 26-边框圆角基本概念

    边框圆角的作用:将原始的直角变为圆角* 格式:border-radius: 100px 0px 0px 0px;...

  • CSS边框圆角--跟着李南江学编程

    1.什么是边框圆角? 就是把矩形边框变成圆角边框,就叫做边框圆角。 2.设置边框圆角的格式 2.1 border-...

  • 25.边框圆角渐变

    边框 什么是边框圆角?将直角的边框变为圆角的边框 边框圆角的格式?border-radius: 左上 右上 右下 ...

  • Flutter-Border

    边框(Border) 单侧边框 全部边框 圆角(borderRadius) 全部圆角 单侧圆角 阴影(BoxSha...

  • Image

    直接圆角图片 设置圆角图片度数 设置圆角图片带灰色圆角边框 设置圆角图片带灰色圆角边框带阴影

  • 常用CSS3 一目了然

    1.css3边框 圆角边框 border-radius: 5px;(圆角半径) 边框阴影 box-shadow: ...

  • android中实现view的圆角

    一、实心圆角 二、空心圆角、有边框

  • UIView任意角圆角和圆角边框

    圆角原理:设置view.layer.mask该遮罩层。 圆角边框:在view.layer 上增加一层,绘制圆角边框...

  • CSS3边框,背景,渐变,过渡,2d变换

    01-边框圆角.html 02-圆角应用.html 03-边框阴影.html 04-边框图片.html 01-背景...

  • 盒模型

    内容区 内边距 边框 指定边框圆角 边框风格 外边距

网友评论

      本文标题:26-边框圆角基本概念

      本文链接:https://www.haomeiwen.com/subject/wojlnftx.html