font

<font color="red>WEB</font>

다른 색깔로 바꿀 수 있다.

 

css의 중요하면서도 쉬운 문법 

1.<style>

a{

 color:red;

 text-decoration: none;

} 모든 a태그에 영향을 준다.

</style>

 

2. <a href="www.naver.com" style="color:red;text-decoration:underline">네이버로 이동</a>

 

 

h1{

  font-size:60px;

  text-align:center;

}

 

css선택자

https://www.naver.com/

클래스르 선택해야 할 때는 .saw를 입력해야 한다.

https://www.naver.com/

클래스 선택자와 아이디 선택자가 만나면 아이디 선택자가 우선되게 된다. 클래스 선택자와 태그선택자가 만나면 클래스 선택자가 이긴다.

 

 

selector 참고

 

CSS Selectors Reference

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

+ Recent posts