selector-required-ref.html (391B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS level4 Selector :required and :optional</title> 5 <link rel="author" title="LEE YUN HEE" href="mailto:zzirasi@gmail.com"> 6 7 <style> 8 input {border:3px solid green;} 9 </style> 10 </head> 11 <body> 12 <p> 13 You should see a green input box. 14 </p> 15 <p> 16 <input> 17 </p> 18 <p> 19 <input> 20 </p> 21 </body> 22 </html>