htmlでCSSコードを書式設定する際に問題が発生しています。私は '削除'ボタンに沿ってテキストを表示しようとしています。それらのフォーマットを右と1/4のサイズにします。また、 "削除"ボタンを入力テキストボックスに行を付けるために、リストにタグを追加しようとしましたが、希望どおりに出力をフォーマットすることができません。ボタンのインラインテキストを持つCSS
ここは、それが今のようになります。
HTML:
while ($row = mysql_fetch_array($query))
{
echo "<form action='add_series.php' name='delete_list' method='POST'>";
echo $row['series'] . " ";
echo "<input type='hidden' name='delete_series' value=' " . $row['id'] . "' />";
echo "<input type='submit' name='submit' value='Delete'>";
echo "</form>";
}
echo "</form>";
はCSS:
body {
background-color:lightgray;
font-family:Verdana, Arial, Helvetica, sans-serif;
}
h1 {
color: black;
text-align: center;
}
p {
color: black;
}
html {
text-align: center;
}
#login
{
width:30%;
margin:auto;
padding:30px 10px 10px 10px;
background-repeat:no-repeat;
background-color: lightgray;
}
.picture
{
width:216px;
height:185px;
content:url('images/NHCM_Logo.png');
margin: 0 auto;
padding-bottom: 50px;
}
#login label
{
display:block;
margin-bottom:.25em;
text-align: left;
}
#login input[type="text"], #login input[type="password"], #login input[type="submit"]
{
width:100%;
margin-bottom:0.5em;
}
input[type=text], input[type=date], input[type=password] {
width: 30%;
height: 50px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
input[type=submit] {
width: 30%;
height: 50px;
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
#service_type, #series, #speaker, #users {
width: 30%;
height: 50px;
}
... – Siyah
@Siyah、することができますいくつかのコードでそれを手伝ってくれますか? – Vlad
[this](https://jsfiddle.net/45a83y2v/1/)のようなもの? –