css 制作圆角圆形图形布局
Posted reyinever
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 制作圆角圆形图形布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>定位练习1</title> <style type="text/css"> .con{ width:100px; height:100px; background-color:gold; margin:50px auto 0; position:relative; border-radius:14px; /* 角是圆的 */ } .box{ width:28px; height:28px; background-color:red; color:#fff; text-align: center; line-height:28px; position:absolute; left:86px; top:-14px; border-radius:14px; /* 圆形 */ } </style> </head> <body> <div class="con"> <div class="box">5</div> </div> </body> </html>
页面效果:
以上是关于css 制作圆角圆形图形布局的主要内容,如果未能解决你的问题,请参考以下文章