IE8 ²»Ö§³ÖCSS word wrapÊôÐÔ
µ±Á¬ÐøÊäÈëÓ¢Óï×Ö·ûºó£¬ÓÉÓÚä¯ÀÀÆ÷ĬÈÏΪһ¸öµ¥´Ê£¬²¢²»»á»»Ðд¦Àí£¬ÔÚIE6/IE7 ÖУ¬ÎÒÃÇ¿ÉÒÔÌí¼ÓcssÖеÄword-wrap ÊôÐÔ£¬ÊµÏÖ×Ô¶¯»»ÐС£µ«ÊÇÔÚIE8 °æ±¾ÖУ¬¸ÃÊôÐÔ²»Ö§³Ö¡£
ÎÒÃÇ¿ÉÒÔ²ÉÓÃÅжÏä¯ÀÀÆ÷°æ±¾ºó£¬Ê¹ÓÃJavaScript½øÐл»ÐС£
if ($.browser.mozilla) {
strContent = toBreakWord(strContent, 87);
}else if($.browser.msie&&($.browser.version == "8.0")){
strContent = toBreakWord(strContent, 87);
}
»»Ðд¦ÀíµÄº¯ÊýΪ£º
// ͨ¹ýJavaScriptʵÏÖÓ¢Îij¤×Ö·û´®»»ÐÐ
function toBreakWord(content, intLen) {
var strContent = content;
var strTemp = "";
while (strContent.length > intLen) {
strTemp += strContent.substr(0, intLen) + " ";
strContent = strContent.substr(intLen, strContent.length);
}
strTemp += " " + strContent;
return strTemp;
}
ÆäÖУ¬contentΪÐèÒª»»Ðд¦ÀíµÄ×Ö·û´®£¬intLenΪÿÐеÄ×Ö·ûÊý¡£ÕâÀïʹÓõÄÊÇhardcode£¬²»ÄÜ×öµ½Ëæ´°¿Ú´óС×Ô¶¯±ä³¤/Ëõ¶Ì¡£
½â¾öÁ¬Ðø×Ö·û×Ô¶¯»»ÐУ¬¿ÉÒÔͬʱ²Î¿¼ http://www.lin04com.cn/?action=show&id=74&page=1
Ïà¹ØÎĵµ£º
CSS(Cascading Style Sheets)²ãµþÑùʽ±í×÷ÓÃÊǽ«ÍøÒ³ÄÚÈݺÍÏÔʾÑùʽ½øÐзÖÀ룬Ìá¸ßÁËÏÔʾ¹¦ÄÜ¡£
CSS´úÂë¸ñʽ£º
Ñ¡ÔñÆ÷Ãû³Æ { ÊôÐÔÃû£ºÊôÐÔÖµ£»ÊôÐÔÃû£ºÊôÐÔÖµ£»……}
Ñ¡ÔñÆ÷£¨¶Ô²»Í¬µÄHTML±êÇ©½øÐпØÖÆ£¬²¢¸³Óè¸÷ÖÖÑùʽÉùÃ÷£¬¼´¿ÉʵÏÖ¸÷ÖÖЧ¹û£©£º
±êÇ©Ñ ......
display Property Values
ValueDescription
none
The element will generate no box at all
block
The element will generate a block box (a line break before and after the element)
inline
The element will generate an inline box (no line break before or after the element). This is default
inline-blo ......
CssÖеÄÌõ¼þÑùʽ±í
<!--[if lte IE 6 ]>
<link rel="stylesheet" href="ie6.css" mce_href="ie6.css" media="all"
type="text/css"/>
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="ie7.css" mce_href="ie7.css" media="all"
type="text/css"/>
<![en ......
margin-bottom:40px; /*ffµÄÊôÐÔ*/
margin-bottom:140px\9; /* IE6/7/8µÄÊôÐÔ */
color:red\0; /* IE8Ö§³Ö */
*margin-bottom:450px; /*IE6/7µÄÊôÐÔ*/ ......
Ò»°ã¶øÑÔ£¬Êó±êÒÔбÏòÉϵļýÍ·ÏÔʾ£¬ÒƵ½Îı¾ÉÏʱ±äΪÓÐÍ·µÄÊúÏߣ¬ÒƵ½³¬¼¶Á´½ÓÉϱäΪÊÖÐÍ¡£µ«ÓÃcss¿É¿ØÖÆÊó±êµÄÏÔʾЧ¹û£¬Èç¿ÉʹÊó±êÒƵ½ÆÕͨÎı¾ÉÏÒ²ÏÔʾ³ÉÊÖÐÍ¡£ ÓÃcss¿ØÖƵÄÓï·¨ÈçÏÂ: span style="cursor:*"Îı¾»òÆäËüÒ³ÃæÔªËØ/span °Ñ * »»³ÉÈçÏÂ15¸öЧ¹ûµÄÒ»ÖÖ£º
¡¡¡¡ Ò»°ã¶øÑÔ£¬Êó±êÒÔбÏòÉϵļýÍ·ÏÔʾ£¬ÒƵ½Îı¾ÉÏ ......