user agent styleshee란?

2023. 8. 28. 17:12웹 프로그래밍(Web Programming)/HTML

코드를 작성하던 중 내가 작성한 코드가 적용되지 않았고

 

 

이는 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을 해주는 것이 있다.