**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3天前关闭。
Improve this question
这个css代码在div中有一个表单,我不知道为什么如果你把表单容器作为一个类移除,表单就不会像列表一样了。
.form-container form{
background:#fff;
flex-direction:column;
display:flex;
}
1条答案
按热度按时间yizd12fk1#
因为
.form-container
的目标是div中的每一个form
,如果你删除了它,并将它保留为.form
,它不会做任何事情,因为文本前的点是类选择器,而且你的表单上可能没有class="form"
,它不会做任何事情。因此,如果你想让它工作,删除点。但请记住,然后这个CSS将影响你的整个页面中的每一个表单。