文章分类 - 【015】网页设计
摘要:1、canvas 的属性width height 为number属性,而其他的标签的 style中的width height为string
阅读全文
摘要:<!DOCTYPE html><!-- saved from url=(0041)http://tryhtml5.sinaapp.com/polycoll.html --><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta charset="utf-8"> <title> 凸多边形 碰撞检测 </title><styl
阅读全文
摘要:四种选择器: 1、id选择器 #idname { font-size:20px;} 2、class选择器 .classname {font-size:20px;} 3、html选择器 body { font-szie:20px;} 4、父子选择器 .classname span {font-size:20px} 优先级:id > class > html块元素与行内元素 1、行内元素(inline element): <span> <a><img> 特点:只占内容宽度,不换行 行内元素只能容纳文本和其它行内元素 转快元素: display=blo
阅读全文