首页 > 其他 > 详细

bootstrap4--笔记--公共样式--边框

时间:2020-06-07 15:12:18      阅读:40      评论:0      收藏:0      [点我收藏+]

边框圆角

<img src="..." alt="..." class="rounded-circle">
<img src="..." alt="..." class="rounded-pill">

区别:

rounded-circle 的css样式为 border-radius: 50% !important;
rounded-pill 的css样式为 border-radius: 50rem !important;

边框大小

 

  <img src="..." alt="..." class="rounded">
  <img src="..." alt="..." class="rounded-sm">
  <img src="..." alt="..." class="rounded-lg">

 

区别


rounded 的css样式为 border-radius: .25rem !important    //.25 == 0.25
rounded-sm 的css样式为 border-radius: .2rem !important;
rounded-lg 的css样式为 border-radius: .3rem !important;

 

bootstrap4--笔记--公共样式--边框

原文:https://www.cnblogs.com/starshine-zhp/p/13060594.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!