2020-11-09 게시 됨2021-08-04 업데이트 됨web몇 초안에 읽기 (약 52 단어)inline style vs !important !important 승 갑자기 인라인에서 정의한 스타일과 !important 중에 누가 더 강력한지 궁금해 졌다 123h1 { color: red !important;} index.html123456789101112<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <link rel="stylesheet" href="style.css" /> </head> <body> <h1 style="color: blue">hello world</h1> </body></html>