Skip to content

记录 JavaScript 开发中遇到的小技巧

浏览器控制台添加 CSS 样式表

js
// 创建一个新的样式表
let style = document.createElement('style');
style.type = 'text/css';

// 添加样式规则
style.innerHTML = `
  .invisible-scrollbar::-webkit-scrollbar {
    display: none;
  }
`;

// 将样式表添加到文档头部
document.head.appendChild(style);

// 现在,选中的元素将应用新样式

Keep Reading, Keep Writing, Keep Coding