input文本框圆角效果代码实例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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/
以上是关于input文本框圆角效果代码实例的主要内容,如果未能解决你的问题,请参考以下文章