태그!!
  applet - object 태그로 사용합니다.
  basefont - CSS로 대체해 사용합니다.
  center - CSS inline
  dir, menu - ol or ul 태그를 대신 사용합니다.
  font - CSS font-family, font-size 등...
  iframe - 사용 불가
  isindex - input 태그로 사용합니다.
  s, strike - CSS text-decoration: strike-through
  u - CSS text-decoration: underline

속성!! (괄호 속은 해당하는 태그)
  align (caption, img, input, object, legend, table, hr) - 사용 불가
  align (div, h1, h2, h3, h4, h5, h6, p) -  CSS text-align 으로
  alink (body) - CCS에서 a:link 
  background (body, table, tr, td, th) - CSS background 
  border (img, object) - CSS border 
  clear (br) - CSS에서 clear 
  compact (dl, ol, ul) - CSS line-height 
  height (table) - 사용 불가
  height (td, th) - 사용 불가; 대신의 셀 속의 내용에 맞춰서 크기가 조정되도록 하세요.
  hspace (img, object) - CSS padding
  language (script) - type / MIME type 사용
  link (body) - CSS a:link
  name (img) - id를 이용하세요.
  noshade (hr) - 사용 불가 
  nowrap (td, th) - CSS white-space: pre 
  size (hr) - CSS margin-left, margin-right
  start (ol) - 사용 불가
  target (a) - 사용 불가
  text (body) - CSS color 
  type (li, ol, ul) - CSS list-style
  value (li) - 사용 불가
  version (html) - 사용 불가
  vlink (body) - CSS a:visited 
  vspace (img, object) - CSS padding 
  width (hr, pre) -  CSS width
  width (td, th) - 사용 불가


추가적인 TIP으로,
  XHTML 1.0 Strict를 사용하면서 table로 레이아웃을 짜려는 건 바보 같은 일입니다. (절대 불가능!) ;;
  XHTML 1.0 Transitional에서도 table로 레이아우 짜는 건 거의 불가능 합니다.
  쉽게 말해서 table 쓰지 마세요. 대신 div 등을 이용합니다.

  가능한 속성들은 모두 CSS로 해주세요.

+ Recent posts