猿问

不用空格怎样让用户名与密码框对齐?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html;charset=Uft-8">

<title>表单标签</title>

</head>

<body>

<form>

<label for="username">用户名</label>

<input type="text" name="username" id="username" value=""/><br/>

<label for="userpass">密码&nbsp;</label>

<input type="password" name="userpass" id="userpass" value=""/><br/>

<input type="submit" name="submit" value="确定"/>

<input type="reset" name="reset" value="重置">

</form>

</body>

</html>


qq_禁灭生_03414590
浏览 8557回答 10
10回答

shubiao_yao

<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html;charset=Uft-8"><title>表单标签</title><style>label{ width: 50px;    display: inline-flex;    height: 30px;}</style></head><body><form><label for="username">用户名</label><input type="text" name="username" id="username" value=""/><br/><label for="userpass" >密码</label><input type="password" name="userpass" id="userpass" value=""/><br/><input type="submit" name="submit" value="确定"/><input type="reset" name="reset" value="重置"></form></body></html>

MarlboroKay

这年头,谁还把用户名,密码写在外面啊,都写在input标签里面了,h5的话,就用placeholder,ie8一下的就写js实现。 如果一定写在外面可以采用text-align属性。 望采纳。

杜发明

如果按你这种布局必须要加修饰,你不想要空格的方法很简单,不管你用什么方式先划分出来四个块,自然就对齐了。

Keyro

建议不要用&nbsp;,要用css修改样式排版布局

文心天堂

告诉我,你是用什么编码,一个&nbsp;能对齐

用户193893

你可以试试在用户名和密码上分别加上一个div,再给它定宽,然后两端对齐,不过效果可能会有差异。也可以用表格或者dl列表排版

weenhall

会了html却不会css,你觉得应该怎样对齐,答案不要我说了吧。其实已经告诉你了

hulukid

用table包起来

依韵S1

没明白对齐是什么意思

lazyhack

同学,CSS干嘛不用呢
随时随地看视频慕课网APP
我要回答