hyperavtr
@hyperavtrAll solutions
- Submitted 2 months ago
Contact form html/css/js solution
- HTML
- CSS
- JS
Any advice, feedback, suggestion I would appreciate.
- Submitted 3 months ago
FAQ accordion html/css/js solution
- HTML
- CSS
- JS
Animation from
display: block;
todisplay:none;
that would work in every browser. (My works neither.) - Submitted 4 months ago
Blog preview card html/css solution
- HTML
- CSS
1.I've tried to make change my
#blog-preview-card
's(parent element, container) shadow-box value by hovering the#header
(child element) .This turned out to work only in opposite way, e.g. this way:.parent:hover .child { background-color: white; }
. (When you hover over the parent element, it will change the background color of the child element to white)I've seen some variants for solution of my problem with pseudo-element
:has
and assigningposition: relative
to parent andposition: absolute
to child element but it didn't worked at my case. If It's possible and can work with my code please write your options. I struggled a lot with this and it's a bit annoying to leave it how it is, but if it's realm of JavaScript usage, okay, so be it.2.W3C validator, seems, not to be complaining about my code, but if you look and it's semantic will seem to you wrong/unnecessary/unreasonably overcomplicated, I'll be grateful for letting me know.