Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Root797344y@N00bPancakes Because why not!
I rather like having everything rotated 8.3º, for example, just because. Or a drop shadow on everything. -
Byomeer22064y@N00bPancakes because I can scroll wherever i want to scroll and not just where THEY want me to scroll. Seriously, there should be a mechanic to deny websites to set the overflow property of the body or html element...
-
@Byomeer Yeah scroll should be left alone for sure.
I was more so wondering ... like if it actually got you anything of much value and etc. -
@N00bPancakes > y you want to do that tho?
Why anything? https://en.wikipedia.org/wiki/...
Embrace the nonsense that is life. -
@Root here's another one for you
* {opacity: 0 !important;}
*:hover {opacity: 1 !important}
Ultimate zen mode. -
@Root
* { opacity: 0 !important; transition: opacity 0.5s linear !important }
*:hover { opacity: 1 !important ;}
wish granted! -
@junon @Root I'll do you one better
* { opacity: 0 !important; transition: opacity 10s linear !important }
*:hover { opacity: 1 !important; transition: opacity 0.2s linear !important }
For a slow fade out
Related Rants
When a website enforces "overflow: hidden" on all content elements, so you hit them with the good ol'
for(let e of document.querySelectorAll("*")) {
e.style.overflow = "scroll";
}
rant
annoying
popups
overflow
html
js