如何實現(xiàn)無圖片的圓角輸入框這問題沒什么好煩惱的,其實利用css3新添加的radius屬性 就可以輕松的解決這個問題。代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W3Cschool圓角輸入框</title>
<style>
input {
background:#fff; border: 1px solid #000;
padding:5px;
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
}
</style>
</head>
<body>
<input
class="inout"
name="inout"
type="text"
value="W3Cschool圓角矩形輸入框">
</body>
</html>
PS:
-moz(例如上面代碼中的: -moz-border-radius:5px; 是firefoe的專有屬性; )用于Firefox
-webkit(例如上面代碼中的:-webkit-border-radius:5px; 是chrome和safari的專有屬性;)用于Safari和Chrome。
當然,萬惡的IE6是不支持這個屬性的。