CSS   发布时间:2022-04-17  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了少css使用最后一个子选择器大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用较少,并尝试获得最后一个输入,以10px的margin-bottom.这是我所拥有的,但它不起作用,而不是在最后一个输入上应用margin-bottom.任何想法为什么?
input {
  margin-bottom: 0px;

  &:last-child {
    margin-bottom: 10px;
  }
}

和HTML

<form id="auth-form">
  <input id="ember367" class="ember-view ember-text-field" placeholder="Email" type="email" name="email">
  <input id="ember368" class="ember-view ember-text-field" placeholder="password" type="password" name="password">
  <div class="clear"></div>

  <a class="pull-left forgot-password">Forgot password?</a>
  <button class="pull-right" data-ember-action="1" type="button">Sign In</button>
</form>

解决方法

你最后的输入不是最后一个孩子 – 那将是你的按钮.

使用:last-of-type代替选择最后一个输入:

input {
  margin-bottom: 0px;

  &:last-of-type {
    margin-bottom: 10px;
  }
}

大佬总结

以上是大佬教程为你收集整理的少css使用最后一个子选择器全部内容,希望文章能够帮你解决少css使用最后一个子选择器所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。