包装好你的HR,让你的造型更简单';

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包装好你的HR,让你的造型更简单';相关的知识,希望对你有一定的参考价值。

HRs are a pain in the ass to style, so why bother? Wrap them in a DIV with a class of HR instead. (In your stylesheet, set .hr hr { display: none }).

This also ports the class of the HR up to the new parent DIV, allowing you to make a few different HR types that clients can easily work with.
  1. $("hr").each(function() {
  2. var hrClass = jQuery(this).attr("class")
  3. $(this).wrap("<div class='hr " + hrClass +"'></div>");
  4. });

以上是关于包装好你的HR,让你的造型更简单';的主要内容,如果未能解决你的问题,请参考以下文章

分享几个简单的技巧让你的 vue.js 代码更优雅

让你的代码更优秀的 14 条建议

还在手写 Getter/Setter 方法吗?Lombok 让你的代码更简洁!

#一些真相# 和自己握手言和,不要期盼另一片荒岛可以让你变成陆地

怎么让你的代码更Pythonic?光有技巧可不行,你还需要看这些

怎么让你的Python代码更优雅!