我一直在用HTML5,PHP,SQL和现在的CSS创建一个网站。你可以猜测这是非常基本的,但我现在正在尝试做最后一部分并让UI工作。我想知道如何在屏幕左上方创建一个包含“管理员登录”字样的Box,当单击框中的任何地方时,它会将我链接到新页面(管理员登录页面)。我的基本问题是我真的不喜欢CSS。如果有人有任何提示会很棒。这就是我到目前为止所拥有的。 1问题在于,您仍然只能点击“管理员登录而不是整个地区。”
<h5 style = "text-align:center;display:inline-block;width:100px;height:35px;background-color:#ccc;border:1px solid #ff0000;"> <a href = "http://127.0.0.1/loginscreen_ui.html">Admin Login </a> </h5>
您诚挚的 GSG
答案 0 :(得分:2)
试试这个:
<a href = "http://127.0.0.1/loginscreen_ui.html">
<h5 style = "text-align:center;display:inline-block;width:100px;height:35px;background-color:#ccc;border:1px solid #ff0000;">Admin Login </h5>
</a>