随笔分类 - html
html
video标签使用controls属性怎么去掉三个点
摘要:当video标签使用controls属性的时候。pc电脑会显示三个点,可以利用controlslist属性进行设置 1、nodownload: 不要下载按钮2、nofullscreen: 不要全屏按钮3、noremoteplayback: 不要远程回放4、disablePictureInPictur
阅读全文
div 的input输入功能
摘要:在div标签内加个contenteditable=true就可以当输入框使用了 <div contenteditable=true></div>
阅读全文
清除input type="number"的默认样式
摘要:input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type='number'] { -moz-appearance: textfield; }
阅读全文
css设置图片宽高等比
摘要:<style> .max_box { width: 200px; margin: auto; } .box { width: 100%; height: 0; padding-top: 100%; position: relative; } img { position: absolute; top
阅读全文
清除input的历史记录
摘要:<input class="" type="text"></input> 加上“autocomplete”属性,禁止显示历史记录 <input class="" type="text" autocomplete="off"></input>
阅读全文
多个html页面共用同一个头部或底部
摘要:以头部为例子: 1、将头部的html以及相关的js单独写在一个html文档里: 2、新建一个header.js文档: 3、将头部的html文件整个全部转换成js文件(可以在网上找个HTML源代码转换JavaScript代码的网站) 我用的是站长工具就可以直接转换 https://tool.china
阅读全文
跨页面(不同页面)锚链接
摘要:网页一:<a href="网页二的路径及名称.html#锚名"></a> 网页二:<a name="锚名"></a>
阅读全文