gpt4 book ai didi

php - CSS/HTML 如何在网页的特定位置显示表单数据

转载 作者:行者123 更新时间:2023-11-28 01:52:27 24 4
gpt4 key购买 nike

我有一个网页,它在页面左侧显示数据,并在列表中向下显示。

我需要帮助使用 CSS 在页面的中间/右侧显示表单。使用我当前的表单 CSS,它显示在页面底部是错误的,我希望它位于中间/右侧。该表单基本上是一个搜索字段,用户可以在其中搜索网站上的成员。

我不擅长 CSS,也许有人可以为表单推荐一个很酷的样式? :D

名为 searchList 的 div 类是我要居中/右对齐的表单所在的位置

我的代码:

<?php
include('init.inc.php');

$output = '';

if(isset($_POST['search'])){
$searchq = $_POST['search'];
$searchq = preg_replace("#[^0-9a-z]#i","",$searchq); //filter, can remove

$query = mysql_query("SELECT * FROM users WHERE user_first LIKE '%$searchq%' OR user_last LIKE '%$searchq%' OR user_uid LIKE '%$searchq%'");
$count = mysql_num_rows($query);

if($count == 0){
$output = 'There was no search found!';
}else{
while($row = mysql_fetch_array($query)){
$uname = $row['user_uid'];
$fname = $row['user_first'];
$lname = $row['user_last'];
$email = $row['user_email'];
$id = $row['user_id'];

$output .= '<div> '.$uname.' '.$fname.' '.$lname.' '.$email.'</div>';
}
}

}
?>

<!DOCTYPE html PUBLIC "-//W3C/DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns=""http://www.w3.org/1999/xhtml>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<section id="showcase1">
<section id="newsletter">
<div class="container">
<h1>ProjectNet Members:</h1>
</div>
</section>
<div class="container">
<div class="userList">
<?php
foreach (fetch_users() as $user){
?>
<p>
<button><a class="userList" href="profile.php?uid=<?php echo $user['id']; ?>"><?php echo $user['username']; ?></a></button>
</p>
<?php

}
?>
</div>
</div>
<div class="searchList">
<form id="search" action="user_list.php" method="post">
<input type="text" name="search" placeholder="Search for members..." />
<input type="submit" value="Search" />
</form>
<?php print("$output");?>
</div>
</section>
</body>
</html>

CSS:

.searchList {
color: #ffffff;
text-decoration: none;
font-weight: bold;
font: 20px Arial, Helvetica,sans-serif;
text-align: center;

}

更新:我设法将表格放在屏幕中间,我需要帮助将它稍微向右移动。

CSS:

.searchList {
color: #ffffff;
text-decoration: none;
font-weight: bold;
font: 19px Arial, Helvetica,sans-serif;
text-align: center;
left: 0;
line-height: 35px;
margin: auto;
margin-top: -100px;
position: absolute;
top: 50%;
width: 100%;
float: right;
}


#search input[type="submit"] {
cursor: pointer;

border: none;
background: #fafafa;
color: #333;
font-weight: bold;
margin: 0 0 5px;
padding: 3px;
font-size: 15px;
font: Arial, Helvetica,sans-serif;
}
#search input[type="text"] {
width: 18%;
border: 1px solid #CCC;
background: #FFF;
margin: 0 0 5px;
padding: 4px;
}
}
#search input[type="submit"]:hover {
background: #e8491d;
color: #fafafa;
-webkit-transition: background 0.3s ease-in-out;
-moz-transition: background 0.3s ease-in-out;
transition: background-color 0.3s ease-in-out;
}

最佳答案

使用 CSS position 属性或 float 属性。要在页面右侧显示表单,请使用 float : right;

form {
float : right;
}

关于php - CSS/HTML 如何在网页的特定位置显示表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49845567/

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