Mannix
Mannix
KPCKevin Powell - Community
Created by i_lost_to_loba_kreygasm on 1/21/2025 in #front-end
Is it possible to animate ::marker which has content defined explicitly ?
i would hide the marker and use pseudo element like ::before
10 replies
KPCKevin Powell - Community
Created by i_lost_to_loba_kreygasm on 1/21/2025 in #front-end
Is it possible to animate ::marker which has content defined explicitly ?
transition is not a transform my guy
10 replies
KPCKevin Powell - Community
Created by i_lost_to_loba_kreygasm on 1/21/2025 in #front-end
Is it possible to animate ::marker which has content defined explicitly ?
::marker only allows limited amount of properties to be use https://developer.mozilla.org/en-US/docs/Web/CSS/::marker#allowable_properties
10 replies
KPCKevin Powell - Community
Created by bockster6669 on 1/12/2025 in #front-end
Hover effect
with the transition property ??
5 replies
KPCKevin Powell - Community
Created by Nope on 1/11/2025 in #front-end
Menu hover animation.
from what i can see it's just a bunch of transforms and an animation you can easily use dev tools to dissect the code
2 replies
KPCKevin Powell - Community
Created by smackalpha on 1/7/2025 in #front-end
Custom border in css
then you would have to go with clip-path or mask-image
7 replies
KPCKevin Powell - Community
Created by smackalpha on 1/7/2025 in #front-end
Custom border in css
use normal version for each border radius (not the shorthand) radius corner it can accept two values e.g border-bottom-left-radius: 30px 40px
7 replies
KPCKevin Powell - Community
Created by i_lost_to_loba_kreygasm on 1/4/2025 in #front-end
how to make li elements centered ?
reset the default padding on the ul element to 0 ??
9 replies
KPCKevin Powell - Community
Created by Myra on 1/2/2025 in #front-end
CSS Flexbox: Items Not Taking Full Width After 730px Media Query
move your media query at the end
3 replies
KPCKevin Powell - Community
Created by DooMGuY086 on 12/27/2024 in #front-end
Tailwind border gradient
border-radius doesn't work with border-image properties
2 replies
KPCKevin Powell - Community
Created by vic on 12/27/2024 in #front-end
how to override the inline css with external css
well that is the only way to overwrite the inline styles in a css file
3 replies
KPCKevin Powell - Community
Created by dosalover47 on 12/17/2024 in #front-end
anybody can help me fix this ? Codepen below . and here is the referrence image
you don't need put the area-name in " " when you declare the grid-area property
7 replies
KPCKevin Powell - Community
Created by Snozzi on 12/6/2024 in #front-end
Grid starts to make Columns
:thumbup:
11 replies
KPCKevin Powell - Community
Created by Snozzi on 12/6/2024 in #front-end
Grid starts to make Columns
11 replies
KPCKevin Powell - Community
Created by Snozzi on 12/6/2024 in #front-end
Grid starts to make Columns
put a closing div before <!-- Workshops
11 replies
KPCKevin Powell - Community
Created by Snozzi on 12/6/2024 in #front-end
Grid starts to make Columns
you didn't close correctly one of your sections
11 replies
KPCKevin Powell - Community
Created by Miia on 12/6/2024 in #front-end
Tailwind class for min-height: 50vh;
min-h-[50vh]
3 replies
KPCKevin Powell - Community
Created by Doksuri on 12/2/2024 in #front-end
nesting css. what did i do wrong ?
that was meant for op sorry 🙂
22 replies
KPCKevin Powell - Community
Created by Doksuri on 12/2/2024 in #front-end
nesting css. what did i do wrong ?
input {
margin-top: 8px;
float: left;
display: none;
}
input {
margin-top: 8px;
float: left;
display: none;
}
to
input {
margin-top: 8px;
float: left;
}
input:not(:checked) {
display: none;
}
input {
margin-top: 8px;
float: left;
}
input:not(:checked) {
display: none;
}
22 replies