본문 바로가기

HTML11

[HTML] 표 - 셀합치기 2024. 7. 2.
[HTML] 표 table - tr td th 등 table>table>표 안에 또 표를 넣는 것도 가능.   table row table data   : 요것이 실제로 내용이 들어가는 한 칸을 담당한다.      먼저 행 제목을 적어준다.     Emil       Tobias    Linus     그 다음엔 그 다음줄 내용.     16    14    10   HTML Table TagsDefines a tableDefines a header cell in a tableDefines a row in a tableDefines a cell in a tableDefines a table captionSpecifies a group of one or more columns in a table for formattingSpecifies column pr.. 2024. 7. 1.
css padding, margin 위 오른쪽 아래 왼쪽 순서 쉽게 기억하는 법 (html) 먼저 숫자 4개 다 나오는 경우padding: 25px 50px 75px 100px;top padding is 25pxright padding is 50pxbottom padding is 75pxleft padding is 100px 순서 : 12시에서 시작해서 시계방향으로 돈다고 기억하기. 항상 12시가 출발이다.  숫자가 2개 나오는 경우 : 12시(위)가 시작이다. 그러니까 상하 그다음 좌우.padding: 25px 50px;top and bottom paddings are 25pxright and left paddings are 50px 숫자 3개padding: 25px 50px 75px;top padding is 25pxright and left paddings are 50pxbottom pad.. 2024. 6. 18.
html margin 여백 옵션 style="margin: 5px": 상하좌우 모두 5픽셀 여백   style="margin: 5px 10px": 상하 5픽셀, 좌우 10픽셀  style="margin: 5px 10px 15px" 위, 오른쪽, 아래  style="margin: 위 오른쪽 아래 왼쪽 "  style="margin: 전체 "  style="margin: 상하  좌우 "  style="margin: 상  우  하  "  style="margin: 상  우  하  좌  "  style="margin: auto " : 자동(중간) style="margin: 상하px auto " 2024. 5. 23.
표 가운데 정렬 html (center table html) style="margin:auto" > 테이블 태그에 위와 같이 추가해준다.상하 여백은 0으로 하려면 style="margin: 0px auto" >라고 한다. 2024. 5. 23.
html 표 관련 - table, th, td, tr 공백, 병렬, 광고 두개, script, 스크립트, 띄우기, 여백 은 표를 만드는 태그입니다. 코드 (이탤릭체는 코드가 아닌 설명입니다) 결과 (보더를 정하지 않으면 선이 투명합니다) (첫째줄) Month (는 제목부;표제부를 의미) Savings (그 다음 줄) January (는 내용부를 의미) $100 February $80 MonthSavingsJanuary$100February$80 The tag defines a header cell in an HTML table. 는 표에서 제목부입니다. An HTML table has two kinds of cells:Header cells - contains header information (created with the element)Standard cells - contains data (created with t.. 2013. 5. 10.
html div 여백 주기 - 위 오른쪽 아래 왼쪽 ㅁ 상하좌우로 여백 10px 주기 ㅁ 상하좌우 서로 다른 여백 주기 (각각 위 오른쪽 아래 왼쪽 - 시계방향) 출처 : http://www.seektime.info/195 2013. 5. 9.
html 한줄 띄우기 break의 약자입니다. 엔터키를 입력하는 것과 같은 기능을 합니다. 아래와 같은 html 코드는To break lines in a text, use the br element.아래와 같이 표기됩니다. To break lines in a text, use the br element. 2013. 5. 9.
[HTML 배우기] html 한 칸 띄우기 / 공백 삽입 [HTML 배우기] html 한 칸 띄우기 / 공백 문자열 가운데 한칸의 공백은 공백으로 인식합니다.두칸 이상의 공백도 여전히 한칸의 공백으로 인식합니다.그러므로 두 칸 이상을 띄울 때는 라는 태그(non-breaking space 의 약자입니다. - 줄바꿈 없는 공백)를 원하는 공백(스페이스) 수만큼 입력해주어야 합니다. (두칸을 띄우고 싶을 때는 한칸은 그냥 스페이스를 누르고 한칸은 입력해서 공백으로 인식시켜 줍니다.) 2013. 5. 9.