CSS中设立的部分参数link后无法读取使用

WBOY
Release: 2016-06-13 12:09:50
Original
959 people have browsed it

CSS中设置的部分参数link后无法读取使用
我用link方式连接CSS文件后,table主体参数好像没有起作用,但是th td的参数起作用了,为什么啊,比如
border-collapse这个参数,在CSS里面已经设置好了,但是无效,我就把它单独摘出来放到PHP网页里面,这下倒是起作用了,谁知道为什么啊~··谢谢
CSS代码

<style type="text/css"><br />table.gridtable {<br />	font-family: verdana,arial,sans-serif;<br />	font-size:11px;<br />	color:#333333;<br />	border-width: 1px;<br />	border-color: #666666;<br />	border-collapse: collapse;<br />}<br />table.gridtable th {<br />	border-width: 1px;<br />	padding: 8px;<br />	border-style: solid;<br />	border-color: #666666;<br />	background-color: #dedede;<br /><br />}<br />table.gridtable td {<br />	border-width: 1px;<br />	padding: 8px;<br />	border-style: solid;<br />	border-color: #666666;<br />	background-color: #ffffff;<br />}<br /><br /></style><br />
Copy after login

============================
php代码
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br /><link rel="stylesheet" type="text/css" href="css/3.css"/><br /><style type="text/css"><br />table.gridtable <br />{<br />border-collapse: collapse<br />}<br /></style><br /><table class="gridtable" ><br /><br /><br /><tr><th>账号1</th><th>用户名1</th><th>密码1</th></tr><br /><?php<br />mysql_connect("localhost", "root", "a");<br />mysql_select_db("zhanghao");<br /><br />/* 查找test1表中ID为1的那行所有的数据 */<br />$sql = "SELECT * FROM 宿舍";<br /><br />/* 执行查找 */<br />$result = mysql_query($sql);<br />$row=mysql_num_rows($result);//返回取得的数据列的数目<br />if($row){                 //判断数据库中是否有值<br />while($row2=mysql_fetch_array($result)){       //注意括号结束的位置<br /><br /><br />$账号=$row2['账号'];<br />$用户名=$row2['用户名'];<br />$密码=$row2['密码'];<br />?><br /><tr><td><?php echo $账号 ?></td><td><?php echo $用户名 ;?></td><td><?php echo $密码;?></td></tr><br /><?php }           //while循环结束的括号<br />}             //if结束的括号<br />?><br /></table>
Copy after login

------解决思路----------------------
CSS文件中不需要写style标签的直接写样式表的,你这样写肯定引入无效。
------解决思路----------------------
顶3#

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template