Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /*定义了两个不同的路径变量,和一个随机串变量*/ | |
| @base_image : "/images/" ; | |
| @base_png : "/images/png/" ; | |
| @img_version :201403191458; | |
| /*只需要传递图片的名字,后缀和路径*/ | |
| .retina_images(@file_name,@file_extension,@file_url){ | |
| /*需要拼接出图片的URL*/ | |
| @image-url-1x : url("@{file_url}@{file_name}.@{file_extension}?@{img_version}"); |
| [ | |
| { | |
| name:"HTML5", | |
| uri:"http://www.w3.org/TR/html5/single-page.html", | |
| category:"markup" | |
| }, | |
| { | |
| name:"HTML 5.1", | |
| uri:"http://www.w3.org/TR/html51/single-page.html", | |
| category:"markup" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |