css 表单框未与左侧对齐

wko9yo5t  于 2023-03-14  发布在  其他
关注(0)|答案(1)|浏览(138)

所以,我遇到了这个问题,因为我的CSS有这个问题。在.left div中,有电子邮件输入框的表单框没有靠左对齐。移动的设计中的一切都很好,但当我尝试为桌面设计媒体查询时,输入是width:100%,因此我将max-width设置为400px,以便它看起来适合设计I'当然,输入保持在中间,而不是在左边。
Here is the image which is the output that i wanna achieve
Here is the code snippet

inkz8wg9

inkz8wg91#

您在媒体查询中的表单选择器前放置了一个点,因此它查找的是class. form。

.container .form //remove the dot before form here
  {
    margin-left: 0;
    
  }

相关问题