支援CSS3 以上
用法::root
說明:
root 是指 HTML tag
css定義:
:root{
background: silver;
}
注意事項:
程式:
<!DOCTYPE html>
<html>
<head>
<title>css3 Selector root 套用樣式</title>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<style type="text/css">
:root{
background: silver;
}
</style>
</head>
<body>
<form action="">
name: <input readonly type="text" value="levin" ><br>
數量1: <input type="number" min="5" max="10" value="1"><br>
E-mail<input type="email" value="myEmail"><br>
</form>
</body>
</html>
圖1:
測試結束~
如果還不了解可參考:w3schools CSS Selector Reference
感謝~
其它文章
留言列表