文本输入字段对齐

时间:2017-06-06 17:58:41

标签: html css forms

我在尝试对齐文本输入时遇到问题。这是我的页面最初的样子:

Initial page 添加以下css代码后:

#items{
    float: right;
    position: relative;
    right: 500px;
    clear: both;        
}

我现在知道了: After css code is added

请注意,“Poids Total(kg)”下的输入消失。

关于可能导致这种情况的任何想法?

提前致谢:)

1 个答案:

答案 0 :(得分:1)

你的css用500px移动它。将其更改为5px并相应地查看或调整

#items{
    float: right;
    position: relative;
    right: 5px;
    clear: both;        
}