分类: H5
thumbnail
H5

慕课 前端工程师笔记 css部分

`####选择器 子选择器 div > p 选中div的子标签p 相邻兄弟选择器 img+p 图片后面紧跟的p 序号选择器 :first-child 首个元素 :last-child 末尾元素 :nth-of-……
thumbnail
H5

网页内引用思源黑体

通过Link标签在网页头部引用Google Web Font: 引用css: <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,40……
thumbnail
H5

设置父级div里的元素强制不换行,滚动处理

同级div设置display:inline-block,父级div强制不换行 <html> <head></head> <body> <div id="container"> <div ……
thumbnail
H5

禁止手机端双指缩放

document.addEventListener('gesturestart', function(event) { var event=event || window.event if (typeof event.preventDefault != 'undefin……
thumbnail
H5

写手机html页面,同时兼顾一下电脑端的一些技巧

首先将body和html的宽设置最大为750px 并且居中。 body,html {width: 100%;height: 100%;max-width: 750px;margin: 0 auto;background-color: #fff;} 然后给页……