zoukankan      html  css  js  c++  java
  • 读书笔记(2014-06)

    (一)2014-06-01

    1、王小波:一个人只拥有此生此世是不够的,他还应该拥有诗意的世界。

    2、几本书:《工艺之道》(柳宗悦)、《讲谈社 • 中国的历史》(日本)、《我承认我曾任历经沧桑》(聂鲁达)、《野火集》(龙应台)、《谁的青春不迷茫》(刘同)、《追风筝的人》(卡勒德 • 胡赛尼);

    (二)2014-06-04

    1、style、currentStyle、getComputedStyle

    (1)对于内嵌style:document.getElementById(id).style.XXX;

    (2)非内嵌style:

        document.getElementById(“test”).currentStyle.top;  // IE, check use element.currentStyle

    document.getComputedStyle(element, null)['width'];  // Not IE, check use document.getComputedStyle

    document.getComputedStyle(element, null).width;

    document.getComputedStyle(element, null).getPropertyValue(‘background-color’);

    (二)2014-06-12

    Google IP:123.205.250.132|123.205.250.80|123.205.251.112|123.205.251.80|163.28.116.18|163.28.83.146|202.39.143.20|202.39.143.84|203.211.0.20

    (三)2014-06-16

    1、 你真的了解HTML吗?

    有这么一段HTML,请挑毛病:

    <P>&nbsp;&nbsp;哥写的不是HTML,是寂寞。<br><br>&nbsp;&nbsp;我说:<br>不要迷恋哥,哥只是一个传说

    (1)html和 xhtml的区别

    (2)样式分离

    (3)合理使用标签

    2、一览CSS布局标准

    (四)2014-06-24

    1、Linux下压力测试工具:Siege, http://www.joedog.org/siege-home/

  • 相关阅读:
    78. Subsets java solutions
    77. Combinations java solutions
    236. Lowest Common Ancestor of a Binary Tree java solutions
    86. Partition List java solutions
    39. Combination Sum java solutions
    129. Sum Root to Leaf Numbers java solutions
    杭电1004
    杭电1003
    杭电1002
    杭电1001
  • 原文地址:https://www.cnblogs.com/china-victory/p/3803122.html
Copyright © 2011-2022 走看看