기본 CSS 문법 ②
1. 의사 요소 선택자 ABC::before – 선택기의 abc 요소 내부 앞에 내용을 삽입합니다. ABC::after – 선택기의 abc 요소 내부 뒤에 내용을 삽입합니다. 2. 속성 선택 <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Document</title> </head> <body> <input type=”text” value=”EARTH” /> <input TYPE=”password” value=”0629″/> <input type=”text” value=”ABCD” disabled/> </body> </html> … Read more