我正在尝试格式化表格中的链接。我已经为<body>
标签内的链接指定了默认格式。它们显示正确。有人能指出为什么以下 CSS 会将页面上的所有链接(包括带有 标记的表格内的链接)格式化<table class="links"></table>
为<body>
标签中的链接吗?我已经阅读了该站点上的许多帖子以及有关使用 CSS 格式化标签内的对象(使用类)的各种其他帖子,但我认为我还缺少其他一些基本的东西。
body
{
background-color:#800000;
color:#FFFFFF;
font:14px arial,sans-serif;
}
body a:link
{
color:#FFFFFF; /* unvisited link */
text-decoration:underline;
font:11px arial,sans-serif;
}
body a:visited
{
color:#FFFFFF; /* visited link */
text-decoration:underline;
font:11px arial,sans-serif;
}
body a:hover
{
color:#FFFFFF; /* mouse over link */
text-decoration:none;
font:11px arial,sans-serif;
}
body a:active
{
color:#FFFFFF; /* selected link */
text-decoration:none;
font:11px arial,sans-serif;
}
table
{
border-collapse:collapse;
background-color:#DDDDDD;
color:#000000;
font:14px arial,sans-serif;
}
table, td, th
{
border:1px solid black;
padding-left: 4px;
padding-right: 4px;
}
td.header
{
padding-left: 4px;
padding-right: 4px;
padding-top: 1px;
padding-bottom: 1px;
font-weight:bold;
}
tr.header
{
padding-left: 4px;
padding-right: 4px;
padding-top: 1px;
padding-bottom: 1px;
font-weight:bold;
}
table.links a:link
{
color:#000000; /* unvisited link */
text-decoration:underline;
font:14px arial,sans-serif;
}
table.links a:visited
{
color:#000000; /* visited link */
text-decoration:underline;
font:14px arial,sans-serif;
}
table.links a:hover
{
color:#000000; /* mouse over link */
text-decoration:none;
font:14px arial,sans-serif;
}
table.links a:active
{
color:#000000; /* selected link */
text-decoration:none;
font:14px arial,sans-serif;
}
编辑:这是使用样式表的来源。
<?php
include "../Core/Debug_Start.php";
include "../Core/Database.php";
Debug::Out( "Running 'Boat/UpdateBlades.php'" );
include "User.php";
include "Blades.php";
session_start();
if( !Users::IsUserLoggedIn() )
header( "location:../index.php" );
?>
<html>
<head>
<link href="../Styles/Damflask/Style_Damflask.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
/////////////////////////////////////////////////////////////
// returns a full list of all blade sets
$aBladeSets = Blades::GetAllBladeSets( $database );
$iNumBladeSets = count( $aBladeSets );
if( $iNumBladeSets == 0 )
return;
$iNumRows = $iNumBladeSets + 1;
// create the table
echo( "<table class=\"links\" align=\"center\">" );
for( $iRowIndex = 0; $iRowIndex < $iNumRows; $iRowIndex++ )
{
echo( "<tr>" );
if( $iRowIndex == 0 )
{
// NAME
echo( "<td class=\"header\">NAME</td>" );
// AVAILABLE
echo( "<td class=\"header\">AVAILABLE</td>" );
// ADDITIONAL INFO
echo( "<td class=\"header\">INFO</td>" );
// EDIT / DELETE
echo( "<td class=\"header\" colspan=\"2\"></td>" );
}
else
{
// display the blade set
$iBladeSetIndex = $iRowIndex - 1;
$bladeSet = $aBladeSets[ $iBladeSetIndex ];
// NAME
echo( "<td>" . $bladeSet->GetName() . "</td>" );
// AVAILABLE
echo( "<td>" );
if( $bladeSet->IsAvailable() )
echo( "Yes" );
else
echo( "No" );
echo( "</td>" );
// ADDITIONAL INFO
echo( "<td>" . $bladeSet->GetAdditionalInfo() . "</td>" );
// EDIT
echo( "<td><a class=\"tablelink\" href=\"UpdateBlades.php?BladesID=" . $bladeSet->GetID() . "\">EDIT</a></td>" );
// DELETE
echo( "<td><a class=\"tablelink\" href=\"DeleteBladeSet.php?BladesID=" . $bladeSet->GetID() . "\">DELETE</a></td>" );
}
echo( "</tr>" );
}
echo( "<tr><td colspan=\"5\"><a href=\"AddBlades.php\">ADD A NEW BLADE SET</a></td></tr>" );
echo( "</table>" );
/////////////////////////////////////////////////////////////
$database->CloseConnection();
include "../Core/Debug_End.php"
?>
</body>
</html>