전체 글

박정수가 공부한 자료를 남기기 위한 블로그
영어공부

CSS Layout - width and max-width

Using width, max-width and margin: auto; As mentioned in the previous chapter; a block-level element always takes up the full width available (stretches out to the left and right as far as it can). Setting the width of a block-level element will prevent it from stretching out to the edges of its container. Then, you can set the margins to auto, to horizontally center the element within its conta..

영어공부

CSS Layout - The display Property

The display property is the most important CSS property for controlling layout. display 속성은 layout을 제어하는데 가장 중요한 css 속성이다. The display Property The display property specifies if/how an element is displayed. Every HTML element has a default display value depending on what type of element it is. The default display value for most elements is block or inline. display 속성은 요소가 어떻게 보여지는데 명시한다. 모든 html..

영어공부

CSS Tables

The look of an HTML table can be greatly improved with CSS: html 테이블의 외관은 css로 멋지게 향상될수 있다. Table Borders To specify table borders in CSS, use the border property. The example below specifies a black border for , , and elements: table 의 경계 테이블의 경계를 명시 하기 위해선 border 속성을 사용하라. , , 요소의 검정색 경계선을 명시하는 예제가 아래에 있다. Notice that the table in the example above has double borders. This is because both the ..

jeongsu
Park_jeong_su