Skip to content

Instantly share code, notes, and snippets.

View VADIVEL-T's full-sized avatar
🎯
Focusing

VADIVEL T VADIVEL-T

🎯
Focusing
View GitHub Profile
@VADIVEL-T
VADIVEL-T / gist:b4579ec5dec3a50755a7482a937ed343
Created May 23, 2025 07:11 — forked from Mikodes/gist:be9b9ce42e46c3d4ccb6
All Media queries for resolutions
/* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
/* insert styles here */
}
/* (320x480) Smartphone, Portrait */
@media only screen and (device-width: 320px) and (orientation: portrait) {
/* insert styles here */
}

CSS


What is CSS?

  • CSS stands for Cascading Style Sheet.
  • Styles define how to display HTML elements
  • Styles were added to HTML 4.0 to solve a problem
  • External Style Sheets can save a lot of work
  • External Style Sheets are stored in CSS files
@VADIVEL-T
VADIVEL-T / snippets
Created February 5, 2023 10:09 — forked from jakubzitny/snippets
StackOverflow JS <code> snipptes - filtered, unescaped
// SNIPPET:
e.preventDefault()
// SNIPPET:
onclick='document.formName.submit();'