怎样把引用式样式表改为内联式样式表 ?
我不知道标题有没有写明白,连我自己看着标题都觉得怪怪的,
问题是这样的,
我原来是用引用式样式表来引用外部的CSS文件,
<link href="css.css" rel="stylesheet" type="text/css" />
#attributes .attributes-list li{display:inline;float:left;width:206px;height:24px;margin-right:20px;overflow:hidden;text-indent:5px;line-height:24px;white-space:nowrap;text-overflow:ellipsis;}
<div id="attributes" class="attributes"><ul class="attributes-list"><li >产品名称:I9100</li><li >品牌: Samsang</li>......</ul></div>
<link href="css.css" rel="stylesheet" type="text/css" />
<div id="attributes" class="attributes"><ul style="display:inline;float:left;width:206px;height:24px;margin-right:20px;overflow:hidden;text-indent:5px;line-height:24px;white-space:nowrap;text-overflow:ellipsis;"><li >产品名称:I9100</li><li >品牌: Samsang</li>......</ul></div>
<ul> <li style="display:inline;float:left;width:206px;height:24px;margin-right:20px;overflow:hidden;text-indent:5px;line-height:24px;white-space:nowrap;text-overflow:ellipsis;">产品名称:I9100</li> <li style="display:inline;float:left;width:206px;height:24px;margin-right:20px;overflow:hidden;text-indent:5px;line-height:24px;white-space:nowrap;text-overflow:ellipsis;">品牌: Samsang</li>......</ul>