html怎样做文本框圆角效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html怎样做文本框圆角效果相关的知识,希望对你有一定的参考价值。
给你一个实例吧,你可以研究一下:
<head><title>css圆角效果--网站每日新</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
div.RoundedCornerbackground: #9BD1FA;width:100px;font-size:12px
b.rtop, b.rbottomdisplay:block;background: #FFF
b.rtop b, b.rbottom bdisplay:block;height: 1px;overflow: hidden; background: #9BD1FA
b.r1margin: 0 5px
b.r2margin: 0 3px
b.r3margin: 0 2px
b.rtop b.r4, b.rbottom b.r4margin: 0 1px;height: 2px
</style>
</head>
<body>
<div class="RoundedCorner">
<b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b>
<br>(div)实现圆角框<br><br>
<b class="rbottom"><b class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b></b>
</div>
</body>
</html> 参考技术A border-radius:像素或者百分比。可以实现你想要的效果
input文本框圆角效果代码实例
input文本框圆角效果代码实例:
本章节分享一段代码实例,它实现了将input文本框设置为圆角的功能。
代码实例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css"> input{ border-radius:6px; border:1px solid #ccc; height:20px; } </style> </head> <body> <input type="text" value="蚂蚁部落"/> </body> </html>
border-radius属性可以参阅CSS3实现圆角效果一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18373
更多内容可以参阅:http://www.softwhy.com/divcss/
以上是关于html怎样做文本框圆角效果的主要内容,如果未能解决你的问题,请参考以下文章