防止 Lion 中的回弹滚动
只需确保您也清除了这些元素上的边距和填充(在任何重置或规范化中都很常见)。
html, body {
height: 100%;
overflow: hidden;
}
…Prefixr
Jeffrey Way 创建了一个应用程序,可以浏览您的 CSS 并添加所有缺少的 CSS3 供应商前缀。无论您添加或遗漏了哪些前缀,它都足够智能地正确执行此操作。更酷的是,它有一个 API,可以……
为 next_posts_link 和 previous_posts_link 生成的链接添加类
这两个函数创建锚链接,您可以自定义很多内容,但仅通过使用它们的参数就无法添加类。必须向 functions.php 添加一个函数。
add_filter('next_posts_link_attributes', 'posts_link_attributes');
add_filter('previous_posts_link_attributes', 'posts_link_attributes');
function posts_link_attributes() {
…