css 用于强制样式继承的实用程序类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 用于强制样式继承的实用程序类相关的知识,希望对你有一定的参考价值。

/** @define utilities */

/**
 * Inherit box-related properties.
 */

.u-inheritBox {
  box-sizing: inherit;
  border: inherit;
  background: inherit;
}

/**
 * Inherit text-related properties.
 */

.u-inheritText {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-decoration: inherit;
  text-transform: inherit;
  color: inherit;
}

/**
 * Inherit all properties.
 */

.u-inheritAll {
  all: inherit;
}

以上是关于css 用于强制样式继承的实用程序类的主要内容,如果未能解决你的问题,请参考以下文章

Ajax 添加的 HTML 不继承页面样式 - jQueryMobile

scss 创建实用程序类以强制执行垂直间距

CSS继承不应用样式

Lombok @Builder 用于具有强制字段的多级继承中的类

翻译:《实用的Python编程》04_02_Inheritance

有办法去掉从父级元素继承下来的 CSS 样式吗