28 lines
670 B
CSS
28 lines
670 B
CSS
/* create,modify,view 페이지용 */
|
|
div.action_form {
|
|
/* 블록 요소로 변경 */
|
|
margin-left: auto;
|
|
/* 자동 여백을 이용한 가로 가운데 정렬 */
|
|
margin-right: auto;
|
|
/* 자동 여백을 이용한 가로 가운데 정렬 */
|
|
/* border: 1px solid blue; */
|
|
/* table-layout: fixed; 고정 레이아웃 */
|
|
border-collapse: collapse;
|
|
/* 테두리 결합 */
|
|
}
|
|
|
|
div.action_form table {}
|
|
|
|
div.action_form table th {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
div.action_form table td {
|
|
text-align: center;
|
|
word-wrap: break-word;
|
|
/* 긴 단어 강제 줄바꿈 */
|
|
white-space: normal;
|
|
/* 자동 줄바꿈 */
|
|
}
|
|
|
|
/* create,modify,view 페이지용 */ |