我在尝试对齐文本输入时遇到问题。这是我的页面最初的样子:
#items{
float: right;
position: relative;
right: 500px;
clear: both;
}
请注意,“Poids Total(kg)”下的输入消失。
关于可能导致这种情况的任何想法?
提前致谢:)
答案 0 :(得分:1)
你的css用500px移动它。将其更改为5px并相应地查看或调整
#items{
float: right;
position: relative;
right: 5px;
clear: both;
}