摘要:
<!DOCTYPE html> <html> <head> <title>请调整浏览器窗口</title> <meta charset="UTF-8"> </head> <body> <h2 align="center">请调整浏览器窗口大小</h2> <hr> <form action="#" m 阅读全文
摘要:
与alert()函数类似,console.log()也可以接受变量并将其与别的字符串进行拼接: 代码如下: //Use variable var name = "Bob"; console.log("The name is: " + name); (注意如上console.log中的name是不用双 阅读全文
摘要:
chrome禁用缓存:调试javascript chrome对js和图片的缓存,导致调试的程序不是最新的,有时F5刷新了都没用。 可以禁用缓存: 先按F12,再按F1, 勾选 Disable cache (while DevTools is open) chrome对js和图片的缓存,导致调试的程序 阅读全文
摘要:
语法: background-position : length || length background-position : position || position 取值: length : 百分数 | 由浮点数字和单位标识符组成的长度值。请参阅 长度单位 position : top | 阅读全文
摘要:
当父级元素没有设定高度时候,而子集元素设定float类型时候,此时父级元素不能靠子集元素撑起来,所以就形成了塌陷; 示例分析 **1.Float之前的效果** <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> 阅读全文