App下載
話題 首頁 > CSS3 教程 > CSS3 教程話題列表 > 詳情

如何利用CSS3打造無圖片圓角輸入框?

精華
宇文傻姑 2016-11-28 19:23:15 瀏覽(5874) 回復(6) 贊(0)
誰知道如何實現(xiàn)無圖片的圓角輸入框嗎?好煩惱?。?/div>
css3

回答(6)

施主同西否 精華 2016-11-28

如何實現(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是不支持這個屬性的。
冒泡的可樂 2016-12-12

input{border- radius :5px;}

后面的值要看具體情況基本5像素就能出現(xiàn)圓角,但是ie低版本不支持

一筆荒蕪 2018-05-31

好慢呀,空空如也,半天不來大神解決,大佬在哪啦

1144100656 2018-05-31

剛學習程序,過來學習學習!!!!...

1152696398 2018-05-31

這個問題我也不清楚,等大佬來解決吧。。

海海520 2018-07-04

input{border- radius :5px;}

要回復,請先登錄 或者注冊