这是我的php代码:
if($_GET['cmd']=='7') {
reports();
bar();
$strXML=past7days();
}
这是我的HTML
<a id="default" href="#" style="color:#000; text-decoration:none"><? echo date('M dS Y' ,strtotime($startdate)); ?> to <? echo date('M dS Y' ,strtotime($enddate)); ?></a>
我想添加
#default{
color:#000;
text-decoration:none;
}
使用php。
我是怎么做到的?
答案 0 :(得分:1)
你创建一个名为css.css或其他的文件。将#default样式放在该文件中。并在打开php括号之前在此页面顶部添加:
<link rel="stylesheet" type="text/css" href="css.css" media="screen">