我的 PHP 代码中有一段,它不受我的 CSS 样式的影响,我不知道为什么......我没有使用 PHP 的经验,所以我不明白为什么这不起作用,它如果有人能花时间回答我,那就太好了。。代码:
<html>
<style>
h1 {
font-family:"Arial";
padding: 5px;
color: #1e90ff;
}
p {
font-family:"Arial";
padding-left: 15px;
color: #000;
}
span {
font-family:"Arial";
padding: 15px;
color: #000;
}
#contentwrapper {
width: 750px;
border: 2px solid #666666;
border-radius: 5px;
background-color: #808080;
text-align: center;
}
</style>
<div id="contentwrapper">
<?php
//connect
I REMOVED THE CONNECTION INFO
//query the db
$getnews = mysql_query("SELECT * FROM page_index") or die(mysql_error());
while ($row = mysql_fetch_assoc($getnews))
{
//get data
$title = $row['title'];
$header = $row['header'];
$content= $row['content'];
echo "
<title>$title</title>
";
echo "
<center><h1>$header</h1></center>
";
echo "
<p>$content</p><br><br>
";
}
?>
</div>
</html>
我知道我可以只使用跨度,但我想使用 p 标签是有原因的。谢谢!