随笔分类 - css
offsetTop、offsetParent
摘要:HTMLElement.offsetTop 为只读属性,它返回当前元素相对于其 offsetParent 元素的顶部内边距的距离。 HTMLElement.offsetParent 是一个只读属性,返回一个指向最近的(指包含层级上的最近)包含该元素的定位元素或者最近的 table,td,th,bod
阅读全文
如何用 sass 定义网站配色
摘要:$colorMain: #008cba; // 主色值 $colorHover: darken($colorMain, 10%); $colorBgGray: lighten(grayscale($colorMain), 40%); $colorBorder: lighten(grayscale($
阅读全文
css 元素定位后不遮挡后边的元素
摘要:css 设置: div { pointer-events: none; }
阅读全文