12. Starting CSS

THOM the 개발자 어린이·2021년 4월 21일
0

From yesterday, i started working on CSS.

It seems a bit similar to html but it actually do have more details than html.

Currently, i learned how to color on the text.

At the same time, i learned how to color certain points.

배운바에 의하면...

<a href="블라블라">블라블라</a><a href="블라블라" style="color:red">블라블라</style> </a>

style 코드를 넣으면 해당 anchor된 블라블라에 문자 색이 검은색에서 빨간색으로 변경이 된다.

이걸 일일히 하면 수작업이 많아져서 style이란 명령어를 선포하고 앵커내에 색을 빨간색으로 설정하면 앵커 명령어에 관련된 텍스트들의 색이 빨간색으로 변한다.

<style>
a {
color:black;
text-decoration:none;
}
</style>
profile
leeyou34 개발자의 블로그입니다. 방문해주셔서 감사합니다~ =D

0개의 댓글