相思资源网 Design By www.200059.com
border-radius CSS3中的代表——第一个在社区中得到广泛使用新属性。这意味着,除去Internet Explorer 8及更低版本,所有的浏览器可以显示圆角。
为了使样式能正确应用,需要为Webkit和Mozilla内核添加前缀。
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
然而,今天我们不关心前缀,只简单坚持官方形式:border-radius。
- border-top-left-radius: 20px;
- border-top-rightright-radius: 0;
- border-bottom-rightright-radius: 30px;
- border-bottom-left-radius: 0;
在上面的代码中,设置border-top-right-radius和border-bottom-left-radius为零是多余的,除非该元素有继承的值。
按top-left, top-right, bottom-right, bottom-left顺序设置每个 radius 的值。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left 相同。
我们可以实验,
- border-radius:2px;
等价于:
- border-top-left-radius:2px;
- border-top-rightright-radius:2px;
- border-bottom-rightright-radius:2px;
- border-bottom-left-radius:2px;
例子2:
- border-radius:2em 1em 4em / 0.5em 3em;
等价于:
- border-top-left-radius:2em 0.5;
- border-top-rightright-radius:1em 3em;
- border-bottom-rightright-radius:4em 0.5em;
- border-bottom-left-radius:1em 3em;
就像margin和padding一样,如果需要的话,这些设置可以合并为一个单一的属性。
- /* 左上角, 右上角, 右下角, 左下角 */
- border-radius: 20px 0 30px 0;
举个例子(网页设计师经常这样做),可以用CSS的border-radius属性模拟柠檬的形状,如下:
- .lemon {
- width: 200px; height: 200px;
- background: #F5F240;
- border: 1px solid #F0D900;
- border-radius: 10px 150px 30px 150px;
- }
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无CSS3中border-radius属性设定圆角的使用技巧的评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。