html怎么设置边框圆角
程序员文章站
2022-03-12 15:13:31
...
设置方法:1、利用border-radius属性,语法“border-radius:圆角半径;”;2、利用border-image属性,用带有圆角的图片来创建边框,语法“border-image:url(圆角图片地址) 20 fill;”。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
html设置边框圆角
1、利用border-radius属性
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div { border: 2px solid #a1a1a1; padding: 10px 40px; background: #dddddd; width: 300px; border-radius: 25px; } </style> </head> <body> <div>border-radius 属性为元素添加圆角边框! </div> </body> </html>
2、利用border-image属性
使用一个带有圆角的图片来创建边框
例:
使用图片:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .border_image{ width:100px; border:double gray 10px; border-image:url(https://img.php.cn/upload/article/000/000/024/61b839d3982fc635.png) 20 fill; text-align:center; color:white; } </style> </head> <body> <div class="border_image">1</div> </body> </html>
推荐教程:《html视频教程》
以上就是html怎么设置边框圆角的详细内容,更多请关注其它相关文章!
上一篇: html可以加多个背景图片吗
下一篇: 微信公众号一个月只能发4次消息怎么办?
推荐阅读
-
WPS文字怎么设置页面如分隔符、背景、页面边框等等
-
html中fieldset边框样式设置
-
黄聪:CSS+DIV 设置圆角边框加阴影效果_html/css_WEB-ITnose
-
不知大家遇到过这种问题么,一个层宽度设为100%,并设置背景图片,在浏览器中浏览,缩小窗口到滚动条出现,然后拖动滚动条到右侧,右侧的区域变成空白,怎么解决?_html/css_WEB-ITnose
-
html中怎么设置字体透明度
-
IOS设置UIView的边框为圆角详解及实例
-
HTML5实现的图片无限加载的瀑布流效果另带边框圆角阴影
-
axure图形边框样式怎么设置?
-
h5图片轮播怎么设置(简单html图片轮播)
-
iOS应用开发中UIView添加边框颜色及设置圆角边框的方法