806,831
questions
0
votes
0
answers
17
views
CSS Transparency effect of an element when scrolling
I'm interesting is it possible using by Scroll-driven Animations API create that text into <footer> smoothly appeared ?
I tried this code but it doesn't work for me. Can someone explain what is ...
0
votes
0
answers
9
views
Styling scrollbars in non-webkit based browsers
Is there an pseudo-element or property to style scrollbars in browsers that are not webkit based? like firefox.
Like in webkit based browsers, this can be done.
::-webkit-scrollbar {
...
}
::-...
2
votes
1
answer
39
views
Why does inner HTML content appear instantly after css max-height transition completes?
Using HTML and JavaScript I am trying to create a list that transitions into view when a button is clicked, including a scrollable inner container, using a max-height transition on the parent DIV.
...
0
votes
1
answer
37
views
using flexbox how to make tow rows in div
I tried two div with flexbox . first div with some content expecting two rows in the div, but it displayed only one row, how to make dynamic rows in first div
<style>
.flex-parent {
...
-1
votes
1
answer
22
views
css style platform compatibility [closed]
for people working as full stack or front-end web developers and use css a lot i want to ask you how you deal with screen sizing and make your website look the same across all platforms, this is a ...
1
vote
1
answer
21
views
Angular 17 - Can't find stylesheet to import (After Angular Upgrade)
I have found everything related to angular material theming, however, it's not the case.
After Angular 16 upgrade to Angular 17 I cannot import some styles from a specific node_module.
...
1
vote
0
answers
15
views
React Native Bottom Tab Navigator with Custom Background View not working on iOS(seems like zIndex issue)
Problem
I'm trying to create a custom bottom tab navigator with a background view that has rounded corners. While it works perfectly on Android, on iOS the background view is not visible - I can only ...
0
votes
0
answers
20
views
Highlighted Image portion on top of image is not sticky when change the device resolution
I am creating one html page where i have one image in this page where i need to highlight the specific portion of image when i hover on specific part of image. I used below code to highlight the image ...
-1
votes
2
answers
21
views
The ability to resize a textarea goes away when the text exceeds the textarea height and the scrollbar width is set to 0
This took me a while to fix, and was frustrating.
With this in the css:
*::-webkit-scrollbar {
width: 0;
}
When a textarea's content exceeds it's height it is no longer resizable as it appears ...
-1
votes
0
answers
29
views
Using CSS grid auto-fill that respects min-width
I am trying to lay items in a grid with columns of equals widths. I want the grid to have as many columns as possible while still honoring each item's min-width.
It seems that something like
grid-...
-2
votes
2
answers
45
views
Why margins/paddings of display: inline is work? [closed]
I have read the [W3Schools][1] and they said
display: inline-block, the top and bottom margins/paddings are respected, but with display: inline they are not.
But, I have try to set the margin and ...
0
votes
0
answers
24
views
Firefox CSS Properties var is not set
I am using a CSS with properties, and the properties are not applying to the webpage. For instance, in the CSS file, --dark and --light are defined as follows:
@property --dark {
syntax: "&...
0
votes
0
answers
23
views
TranslateY doesn't work with the eyelid keyframes but scaleY does
I just finished putting a mask over the left eyelid outline of my project, but I messed up with its alignment with the eyelid (the wipe in animation). Currently I used scaleY to have it infinitely ...
0
votes
0
answers
16
views
Change title color in Docusaurus
On the site homepage, there is the "title" text which is the big text on the banner. By default, it is white on light theme and black on dark theme, and I want to swap this. Is there a ...
0
votes
0
answers
13
views
Changing Opacity Not Reflecting on Image [duplicate]
As the title mentions I can't seem to get the opacity of an image to work here. This is what I'm trying to achieve. I have an image that needs to have an opacity in the background so the user can ...