°³Ã¼ ¼Ó¿¡¼­ ÅؽºÆ®°¡ ¾î´ÀÂÊÀ¸·Î À¯µ¿Çϴ°¡(È帣´Â°¡)¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù.

Àμö
cssSelector : (½ºÅ¸ÀÏ ¼±ÅÃÀÚ)
¼Ó¼ºÀ» °¡Áú¼ö ÀÖ´Â ¿¤·¹¸àÆ®()³ª Ŭ¶ó½º(class) À̸§ ȤÀº ÀνÄÀÚ(id)ÀÌ´Ù.

: (¼Ó¼º ¹®ÀÚ¿­)
½ºÅ¸ÀÏ ¼Ó¼ºÀº Å×ÀÌºí ·¹À̾ƿôÀÌ °íÁ¤(fixed)µÇ´Â°¡¸¦ ³ªÅ¸³»´Â ¹®ÀÚ¿­ÀÌ´Ù.

none µðÆúÆ®À̸ç, À¯µ¿ÇÏÁö ¾Ê°í ÅؽºÆ®°¡ ÀÖ´Â ÀÚ¸®¿¡ µð½ºÇ÷¹À̵ȴÙ.
left ÅؽºÆ®°¡ °³Ã¼ÀÇ ¿ÞÂÊ ³¡À¸·Î À¯µ¿ÇÑ´Ù.
right ÅؽºÆ®°¡ °³Ã¼ÀÇ ¿À¸¥ÂÊ ³¡À¸·Î À¯µ¿ÇÑ´Ù.

ÀÌ ¼Ó¼ºÀº currentStyle¿¡¼­´Â ÀбâÀü¿ëÀÌ°í, ±×¿ÜÀÇ °³Ã¼¿¡¼­´Â Àбâ/¾²±âÀ̸ç, µðÆúÆ®°ªÀº noneÀÌ´Ù.

CSS(Cascading Style Sheets) ¾ÖÆ®¸®ºäÆ®´Â »ó¼ÓµÇÁö ¾Ê´Â´Ù.

Ư±â

left³ª right °ªÀ¸·Î, °³Ã¼°¡ ºí·° °³Ã¼·Î Ãë±ÞµÇ°í, display ¼Ó¼ºÀº ¹«½ÃµÈ´Ù. À¯µ¿ ¹®´ÜÀº ¹®¼­¿¡¼­ ¼­·Î Á¢ÇØ ³ªÅ¸³ª°Ô ÇÑ´Ù.

À¯µ¿°³Ã¼ ´ÙÀ½¿¡ ¿À´Â °³Ã¼´Â À¯µ¿°³Ã¼¿¡ »ó´ëÀûÀ¸·Î ±× ºÎºÐ¸¸Å­ À̵¿ÇÑ´Ù.

À¯µ¿°³Ã¼´Â ´Ù¸¥ ºí·° °³Ã¼ÀÇ Å׵θ®, Æеù ȤÀº ¸¶Áø¿¡ ´êÀ» ¶§±îÁö ÁÂÃ÷À¸·Î³ª ¿ìÃøÀ¸·Î À¯µ¿ÇÑ´Ù.

div¿Í span °³Ã¼µéÀº À¯µ¿ÇÏ¿© Ç¥ÇöµÇ±â À§ÇÏ¿© float ¾ÖÆ®¸®ºäÆ®¸¦ ¼³Á¤ÇÏ¾ß ÇÑ´Ù. IE5¿¡¼­´Â div°ú span °³Ã¼µéÀº µðÆúÆ®·Î widthÀ» ÇÒ´çÇϸç, °ªÀÌ ÁöÁ¤µÇÁö ¾Ê¾Æµµ Ç¥ÇöµÈ´Ù.

Àû¿ë
°³Ã¼scriptCSS IE ¹öÀü
ÂüÁ¶

ÀÌ ¼Ó¼ºÀº CSS1(Cascading Style Sheets, Level 1)¿¡¼­ Á¤ÀǵǾú´Ù.


À¯µ¿ÇÏÁö ¾Ê´Â ¹®ÀÚ¿­
<DIV id="container" style="border:solid 1 blue;padding:10">
<IMG src="../../gif/rfexample.gif" style="float:left">
<IMG src="../../gif/rfexample.gif" style="float:right">
<IMG src="../../gif/rfstyle.gif" style="float:left">
<IMG src="../../gif/rfstyle.gif" style="float:right">
<DIV style="float:none">À¯µ¿ÇÏÁö ¾Ê´Â ¹®ÀÚ¿­</DIV>
</DIV>
<SCRIPT>
coll=container.all;
str='';
for (i=0;i< coll.length;i++){
  str+=i+'] '+coll[i].nodeName+', styleFload=<FONT color=blue>'+coll[i].style.styleFloat+'</FONT>, '+coll[i].src+'<BR>';
}
document.write(str);
</SCRIPT>

À̹ÌÁö À§¸¦ Ŭ¸¯ÇØ º¸¶ó.

»ïÇ×½ÄÀ¸·Î styleFloat ½ºÅ¸ÀϼӼºÀ» ÁöÁ¤ÇÏ¿´´Ù.

<IMG src="../../gif/rfexample.gif" style="float:right"
  onclick="(this.style.styleFloat=='right')?this.style.styleFloat='left':this.style.styleFloat='right'">
<IMG src="../../gif/rfexplain.gif" style="float:right"
  onclick="(this.style.styleFloat=='right')?this.style.styleFloat='left':this.style.styleFloat='right'">
<IMG src="../../gif/rfstyle.gif" style="float:left"
  onclick="(this.style.styleFloat=='right')?this.style.styleFloat='left':this.style.styleFloat='right'">
<IMG src="../../gif/rfproperty.gif" style="float:left"
  onclick="(this.style.styleFloat=='right')?this.style.styleFloat='left':this.style.styleFloat='right'">
À̹ÌÁö À§¸¦ Ŭ¸¯ÇØ º¸¶ó.