标签:idt 效果 order http 16px 大于 图片 技术分享 alt
border-radius是向元素添加圆角边框。
使用方法:1. border-radius:10px; /* 所有角都使用半径为10px的圆角 */
2. border-radius: 5px 4px 3px 2px; /* 四个半径值分别是左上角、右上角、右下角和左下角,顺时针 */
利用border-radius可以做出各种半圆效果。
1,实心上半圆:
方法:把高度(height)设为宽度(width)的一半,并且只设置左上角和右上角的半径与元素的高度一致(大于也是可以的)。
div{ height:50px;/*是width的一半*/ width:100px; background:#9da; border-radius:50px 50px 0 0;/*半径至少设置为height的值*/ }
效果:
还可以通过gorder-fadius做出更多的圆形
标签:idt 效果 order http 16px 大于 图片 技术分享 alt
原文地址:https://www.cnblogs.com/zdl2234/p/10335379.html