티스토리 뷰
# 글자색상바꾸기 <font color="색상">
# 글자크기바꾸기 <font size="크기">
# 글자배경색상바꾸기 <h1 style="background:색상"> --->사실 css(Inline Sytle Sheet)
# 줄바꿈 <br/>
# 배경색상바꾸기 <body bgcolor="색상">
# 단락구분 <p>
# 입력한대로보여주기 <pre></pre>
# 공백한칸
# 문단정렬하기 <div align="left|center|right"></div>
# 테두리지정하기
1. html문법
<table border="1" width="" height="">
tr --> 줄 td --> 칸
2. css문법 --> Embeded Style Sheet
<style type="text/css">
td {
border-style:dotted;
border-width:2px;
border-color:red;
width:50px;
height:50px;
}
</style>
text-align:center;
background:yellow;
td class="s1"
.s1 {background:aquamarine;} // .class명 -->선택자
'VIEW > JAVASCRIPT' 카테고리의 다른 글
[javascript]객체생성방법,for in,date객체,Array객체 (0) | 2017.12.01 |
---|---|
[javascript] 함수의 종류,객체,String내장객체 (0) | 2017.12.01 |
[javascript] input type,자료형,주석문,배열,내장함수 (0) | 2017.12.01 |
[javascript] script 기본문법 (0) | 2017.12.01 |
[javascript] 자바스트립트란? (0) | 2017.12.01 |