这是您需要的CSS:
* {
line-height: 1.6;
}
您可以将此添加到;“自定义”-&燃气轮机"E;附加CSS“;但请注意,这将影响所有元素,因为*"E;。您可以看到更多选择器
here, 例如,如果您只希望它影响帖子的内容,您可以执行以下操作:
.entry-content {
line-height: 1.6;
}
您可以添加“;!“重要”;要像这样忽略css层次结构,请执行以下操作:
.entry-content {
line-height: 1.6 !important;
}
您可以使用浏览器的元素检查器查看某些元素的ID和类,例如;f12“;在firefox上,单击下图所示的按钮,然后单击您感兴趣的页面元素。
如果您只对wp admin页面感兴趣,可以在插件代码中使用以下挂钩:
add_action( \'admin_head\', \'asd_set_custom_line_height\' );
function asd_set_custom_line_height(){
echo "
<style type=\'text/css\'>
* {
line-height: 1.6;
}
</style>
";
}