在线教程

  • html links

    3.3 HTML 链接(Links) 链接是Web的核心元素 链接 是HTML的基础元素,因为Web的设计初衷就是想把一组文档彼此链接起来组成信息分享网络。 HTML的 超文本(HyperText) 部分定义了链接的类型即:超文本链接(hypertext links), 也就是 超链接(hyperlinks)。 在HTML中,链接是内联元素,使用 <a> 标签。 href(hypertext reference) 属 ...

  • sass scss less

    ... very similar to CSS learning curve: it only adds a few additional features on top of CSS compatibility; a CSS file is a valid SCSS file resources: lots of online articles to read and open source libraries to use expandibility: it’s easy to go ...

  • sass variables

    ... our CSS, whenever a color unit is required: .quote{ border-left: 5px solid $yellow;} This .scss file will be compiled into a .css file, where all variables will be replaced with their actual value: .quote{ border-left: 5px solid #fce473;} Why ...

  • html web worker

    12.28 HTML 网页工作线程(Web Worker) Web Workers 是HTML5提供的一个JavaScript多线程解决方案 Web worker是一个在后台运行的JavaScript程序,它不会影响当前页面的用户操作。 从事过Windows桌面编程的人,应该熟悉工作线程(Work Thread)的概念,该线程主要负责比较耗费时间的数据处理或通信方面的任务,当任务处理完成时,发送消息通知界面 ...

  • internet

    1.3 互联网基础知识 网络协议栈 互联网由一系列网络设备连接所构建,如同人与人的对话使用语言一样,计算机之间的对话语言就是协议。 且如同复杂的社会组织有不同阶层一样,实践表明复杂的计算机网络同样需要区分层次,各个层次各司其职,分工协作。 互联网网络协议遵循OSI参考模型, OSI是Open System Interconnection的缩写,意为开放式系统互联。国际标准化组织(ISO)制定了OSI模型,该 ...

  • svg reference

    ... or 'max'. (default xMidYMid)" zoomAndPan="'magnify' or 'disable'. Magnify option allows users to pan and zoom your file (default magnify)" xml="outermost <svg> element needs to setup SVG and its namespace: xmlns=" ...

  • why css exists

    4.1 为什么要用 CSS 分离 内容(content)和样式(styling) 随着90年代以来Web技术的流行,网站个性化设计的需求也相应增长。 在使用CSS之前,Web开发人员依赖于一些特定的HTML标签和属性来增强网页的视觉体验,而依赖表格来进行布局设计。 和样式有关的一些HTML标签: <basefont> 定义整个网页文档的字体 <font> 定义一个具体的字体类型,颜色和它 ...

推广服务(新)
最新文章