我在一个位于php文件中的JUMI链接的Joomla网站上这样做
用那个说 - 看起来像简单的html / css而且我认为我只是做错了什么 -
或许它更深入,因为Joomla文章/模块覆盖了我的CSS?
PHP / HTML文件:
<html>
<link rel="stylesheet" href="php_scripts/css/login.css" type="text/css">
<body>
<p class="logform">
<form action="http://www.link.com" method="post">
username: <input type="username" name="username"><br>
password: <input type="password" name="passw"><br>
<input type="submit">
</form>
</p>
</body>
</html>
CSS文件:
.logform {
text-align:center;
color:red;
position:fixed;
top:30px;
right:5px;
}
答案 0 :(得分:1)
您正试图将表单打包成段<p>
,这段无效。
这应该包含在div
元素中。
<div class="logform">
<form action="http://www.link.com" method="post">
username: <input type="username" name="username"><br>
password: <input type="password" name="passw"><br>
<input type="submit">
</form>
</div>