user agent styleshee란?
2023. 8. 28. 17:12ㆍFrontEnd & Mobile/HTML & CSS
코드를 작성하던 중 내가 작성한 코드가 적용되지 않았고
이는 user agent stylesheet에서 비롯되었음을 알 수 있었다
user agent stylesheet란?
https://stackoverflow.com/questions/12582624/what-is-a-user-agent-stylesheet
What is a user agent stylesheet?
I'm working on a web page in Google Chrome. It displays correctly with the following styles. table { display: table; border-collapse: separate; border-spacing: 2px; border-color: g...
stackoverflow.com
=> 각 브라우저마다 정해놓은 css 기본 규칙
html 파일에서 <!DOCTYPE html>을 써주지 않아 html의 최신 버전을 알려주지 않거나,
user agent stylesheet에서 명시하는 속성을 내가 직접 override하지 않으면 그 기본 규칙이 적용될 수 있다.
이를 미연에 방지하는 법은 브라우저의 모든 기본 css 규칙을 초기화하기 위해 css reset을 해주는 것이 있다.
'FrontEnd & Mobile > HTML & CSS' 카테고리의 다른 글
[CSS] background와 background-color의 차이 (1) | 2023.12.02 |
---|---|
[html] <input> value 속성 (0) | 2023.09.18 |
[css]클래스(class) vs 아이디(id) (0) | 2023.08.25 |
[코딩알려주는누나 | 부트스트랩 사용법] (0) | 2023.03.18 |
airbnb 클론 코딩 (0) | 2023.01.29 |