학원공부(14)
-
html, css 2
마우스를 올리면 rotate(15deg)설정대로 15도 돌아간다. webkit = 크롬, 사파리 moz = 파이어폭스 o = 오페라 ms = 인터넷익스플로어 https://www.w3schools.com/cssref/pr_text_color.asp CSS color property CSS color Property Example Set the text-color for different elements: body { color: red; } h1 { color: #00ff00; } p.ex { color: rgb(0,0,255); } Try it Yourself » More "Try it Yourself" examples below. Definition and Usage The color property..
2020.07.28 -
<html 1일차> 2020/07/23
- 시작 Visual Studio Code를 설치하고 html 파일을 열면 ! (느낌표)를 치고 Tap키를 누르면 이렇게 기본뼈대가 나온다.. 정말 편한 기능이다. 1. h1~h6는 헤더이며 위와 같이 내림차순으로 크기가 작아진다. 2. 특수문자 같은 경우 그대로 쓸수 없으며 https://dev.w3.org/html5/html-author/charref Character Entity Reference Chart dev.w3.org 위의 사이트에서 html 특수문자들을 참고할수 있다. 내가 쓴 특수문자 & 는 & 라고 쓴다. 3. pre 태그 pre태그는 문서 내용에 편집되어 있는 모든 여백, 탭, 줄 바꿈 등을 모양 그대로 화면에 보여 준다 4. 각종 태그 축양어의 원래 단어가 해당 텍스트에 마우스를 ..
2020.07.23