Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
/* Desktop layout :992px. */ | |
@media (min-width: 992px) and (max-width: 1200px) { | |
} | |
/* Tablet layout :768px */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<script> |