Skip to content

html 元素

文字样式避免污染

为了避免污染导致的效果不大到预期,建议 文字类 css 都补上这三个属性

css
font-size: 16px;
line-height: 1.5;
letter-spacing: 1px;

stripHTML

js
function stripHTML(html) {
  var temp = document.createElement("div");
  temp.innerHTML = html;
  return temp.textContent || temp.innerText || "";
}

select 移除选中边框

css
select {
  border: none; /* 移除边框 */
  outline: none; /* 移除 focus 时的高亮边框 */
  box-shadow: none; /* 移除一些浏览器默认的阴影效果 */
}

select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}