
Remember… (see source)
When using the following in CSS:
break-inside: avoid;
also add to the same item:
overflow: hidden;
Otherwise Firefox will give you a headache.
Have a nice day 🙂
Remember… (see source)
When using the following in CSS:
break-inside: avoid;
also add to the same item:
overflow: hidden;
Otherwise Firefox will give you a headache.
Have a nice day 🙂
Selectors are one of, if not, the most important parts of CSS. They shape the cascade and determine how styles are to be applied to elements on a page.
Continue reading CSS Stylesheet selectorsCool rockhand!
a { cursor: url(/hand.cur),url(/hand.png),auto; color: #000; text-decoration: underline; outline: 0; -webkit-tap-highlight-color: rgba(180,0,25,.5); }
See the links at large.nl
If it does not scroll as expected on iOS, try:
height: fit-content;
height: -webkit-fit-content;
height: -moz-fit-content;
overflow-y:scroll;
-webkit-overflow-scrolling: touch;
That’s all! Continue reading iOS fixed layers and scrolling
Prevent caching?
change the HEADERS!
Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Expires: 0
GOOD INFO HERE:
https://stackoverflow.com/questions/49547/how-to-control-web-page-caching-across-all-browsers
Just correct this using CSS.
The appearance property is used to display an element using a platform-native styling based on the users’ operating system’s theme.
.thing { -webkit-appearance: none; -moz-appearance: none; appearance: none; }