Hyo Kim’s weblog

on COMMunication.RESearch.ORG

Archives for the ‘css’ Category

float object and list css

By hkim • Mar 1st, 2008 • Category: css, for myself

Table을 float시키고 싶을때 아래의 방법을 사용하고 있다고 가정하면,
table.wikiLeft {
  float:left;
  display:block;
  font-size:1em;
  background-color: #FFF;
  margin: 0 20px 10px 0;
  }
<table class=”wikiLeft”> . . . . </table>로 왼쪽으로 float하는 것이 가능하다.  다음의 본문은 이제 table의 오른 쪽에 위치하여 왼쪽으로 정렬되어 나타나다가 table의 height가 끝나는 순간 본문의 왼쪽면에 정렬되어 나타나야 한다. 즉,

< t a b l e class=”wikiLeft” [...]