1.在div简单布局时,要想做到两边元素浮动,中间元素居中显示,要把中间的元素放到两个浮动元素的下方,不然中间元素会上不去。
2.使用原生的html中的button标签时一定要加上<type="button"> 防止点击跳转新页面
3.<html lang="zh-cmn-Hans">
或 <html lang="zh-CN">
设置中文语言
4.设置选中文本的颜色和背景颜色:
::selection { color: '' ,background: '' }
5.设置元素背景透明:
background: transparent, background-color: rgba(255, 255, 255, 0.6)
6.关于background-image的属性值url为变量时的写法:
HTML
<div :style="{'background-image':'url('+imgURL+')'}"></div>
JSX
<div style={{ backgroundImage:
url(${path})}}></div>
7.网页哀悼模式
html { filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); }