This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var O = {a: 1}; | |
| var n = Object.create(O, { | |
| a: { | |
| value: 2 | |
| } | |
| }); | |
| console.log(n); //{a: 1} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <style type="text/css" rel="stylesheet"> | |
| #bg{background:url(bg.png)} | |
| </style> | |
| <div id="bg"></div> | |
| <img src="pic.png" /> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <style> | |
| .box{ | |
| width: 200px; | |
| height: 200px; | |
| background: #CCC; | |
| display: table-cell; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <style rel="stylesheet"> | |
| .inner{ | |
| height: 40px; | |
| background-color: #f33; | |
| } | |
| .fir{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <style rel="stylesheet"> | |
| div{ | |
| width: 60px; | |
| height: 60px; | |
| background: url(http://xnimg.cn/modules/global-publisher/res/tl-photo.png) center no-repeat; | |
| } | |
| .box_shadow{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -webkit-appearance: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html { | |
| filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); | |
| -webkit-filter: grayscale(100%); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var c = 1; | |
| delete c; //false | |
| d = 1; | |
| delete d; //true | |
| window.e = 1; | |
| delete e; //true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-moz-document url-prefix(){ | |
| #feed_live .name{ | |
| position: relative; | |
| top: 6px; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <body> | |
| <div id="nav"></div> | |
| </body> | |
| <script type="text/javascript"> | |
| alert(window.nav); | |
| /** | |
| * 经测试 |
OlderNewer