gpt4 book ai didi

php - 按钮 CSS 查询

转载 作者:行者123 更新时间:2023-11-28 07:27:37 25 4
gpt4 key购买 nike

我有一个页面列出了 3 个按钮,由 PHP if 语句输出,每个按钮都包装在一个单独的“a”标签中。我的问题是,当我更新 CSS 时,按钮的宽度会改变,但高度不会。

我真的很困惑,我已经检查了所有其他 ID 和类以检查冲突等,但看不到任何明显的东西。在 chrome 上的开发人员工具中更改时宽度会改变,但高度不会。

我可能会遗漏一些明显的东西,因为我倾向于这样做,但我一生都看不到这个问题。

感谢任何帮助。

代码:(注意:我使用的是“管理员”帐户,因此 $admin = 1。)

<?php
ini_set('display_errors', 'On');
session_start();

if($_SESSION['login'] == 0) {
header('Location: /includes/session_expired.php');
}

$admin = $_COOKIE['admin'];

?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">

<link rel="stylesheet" href="../stylesheet/main_stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:400,700" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/date_time.js"></script>
<script type="text/javascript" src="../js/jquery.js"></script>
<?php
if($admin == 0) {
echo '<script type="text/javascript" src="../js/success_timer.js"></script>';
}
?>
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/divunk/html5.js"></script><![endif]-->
</head>
<body id="nauthBody">
<div id="nauth-container">
<div id="nauth-inner-container">
<div id="nauth-content">
<?php
if($admin == 0) {
echo ' <p>You are not authorised to view this page.</p>
<span id="timer"></span>';
} elseif ($admin == 1) {
echo ' <p>Please select an element to manage:</p>
<div id="system_selection">
<a href="user_management.php"><input class="system_button" type="button" name="users" value="Users"/></a>
<a href="authorised_devices.php"><input class="system_button" type="button" name="authorised_comps" value="Authorised Computers"/></a>
<a href="resource_management.php"><input class="system_button" type="button" name="resource_management" value="Resource Management"/></a>
</div>';
}
?>
</div>
</div>
</div>
</body>
</html>

和 CSS:

.system_button {
height: 35px;
width: 65%;
}

#system_selection a {
cursor: pointer;
}

#system_selection {
height: auto;
width: auto;
}

最佳答案

右键单击您的按钮,使用检查元素来查找此按钮上的样式。您会发现哪种风格对其有影响。

关于php - 按钮 CSS 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31733446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com