PHP头条
热点:

PHP变量中加CSS代码。解决方法


PHP变量中加CSS代码。

#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }
#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }
#scrollnews_con_1 { width:645px; overflow:hidden; }
#scrolling_1 ul { display:block; height:240px; width:645px; }
#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }
这个我想给PHP变量付值后输出。
for (i=0 ;i=100; i++) {
echo "#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }";
#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }
#scrollnews_con_1 { width:645px; overflow:hidden; }
#scrolling_1 ul { display:block; height:240px; width:645px; }
#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }

}
?>
这么写了以后,不正常了。
我该怎么写呢?

分享到:
------解决方案--------------------
变量前面要加$

for ($i=0 ;$i=100; $i++) {
------解决方案--------------------

for ($i=0 ;$i<=100; $i++) {
echo "#scrolling_1 { width:635px; height:240px; overflow:hidden; padding:1px; border:1px solid #999; margin:0 auto; text-align: left; }
#scrollnews_1 { position:absolute; width:645px; height:240px; overflow:hidden; display:inline; top:1; left:1; }
#scrollnews_con_1 { width:645px; overflow:hidden; }
#scrolling_1 ul { display:block; height:240px; width:645px; }
#scrolling_1 ul li { height: 240px; width: 205px; float: left; overflow:hidden; display: inline; margin-right: 10px; }

www.phpzy.comtrue/phprm/8076.htmlTechArticlePHP变量中加CSS代码。解决方法 PHP变量中加CSS代码。 #scrolling_1{width:635px;height:240px;overflow:hidden;padding:1px;border:1pxsolid#999;margin:0auto;text-align:left;} #scrollnews_1{position:absolute;width:645px;height:240p...

相关文章

相关频道:

PHP之友评论

今天推荐