-
css 캐스케이딩 우선순위css 2021. 6. 5. 22:36
style>id>class>태그
<!DOCTYPE html> <html> <head> </head> <style> p{ color:blue } .two{ color:red } #one{ color:seagreen } </style> <body> <p id="one" class="two" style="color:yellow ";>하이요</p> </body> </html>
노란색 > 초록색 > 빨간색 > 파란색 순서
'css' 카테고리의 다른 글
width,height,vw,vh (0) 2021.06.06 css border (0) 2021.06.06 인라인,블록 (0) 2021.06.06 css 구글폰트 사용 (0) 2021.06.05 css (0) 2020.06.29