随笔分类 - html/css
摘要:<template> <div class="wrapper"> <div class="demo1"> <span class="item" v-for="i in 6" @click="testClick(this)">测试{{i}}</span> </div> <div class="demo
阅读全文
摘要:1、子控件添加css样式 position: relative; top: 50%; transform: translateY(50%); /*垂直居中*/ margin: 0 auto; /* 水平居中 */ 2、使用flex的话 直接在父布局处理即可 display: flex; align-
阅读全文
摘要:normal 默认。空白会被浏览器忽略。 pre 空白会被浏览器保留。其行为方式类似 HTML 中的 <pre> 标签。 nowrap 文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止。 pre-wrap 保留空白符序列,但是正常地进行换行。 pre-line 合并空白符序列,但是
阅读全文
摘要:autoplay autoplay 如果出现该属性,则视频在就绪后马上播放。 controls controls 如果出现该属性,则向用户显示控件,比如播放按钮。 height pixels 设置视频播放器的高度。 loop loop 如果出现该属性,则当媒介文件完成播放后再次开始播放。 muted
阅读全文
摘要:<div style="width:100%;word-wrap:break-word;word-spacing:normal;"> 00000000000000000000000000000000000000000000000000000000000000000000000000000000000
阅读全文
摘要:<meta charset='utf-8'> <!-- 优先使用 IE 最新版本和 Chrome --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <!-- 页面描述 --> <meta name="descrip
阅读全文