Spacing between letters
Hello!
How can I stretch out the last word
.eighteen so it covers the width of the container?
I tried letter-spacing but then the word is moving off from text-align, and space-between and display flex did not work either.
The desired look is the bottom word "Beck" (the artists name in this design)....need some fix in the search dropdown
hey folks this is my code
https://mystb.in/TheologyWarnerFundamental
for now as soon as I type something in the input box dropdown with locations appear so I want that when I click on the location or press enter the drop down close and location name is set in the input field...
SCSS Error: can not read files in public path
I have an assets folder that contain some other files with images and svgs in it in the public file of my project so...
=>
navbar.scss
...I declared a variable with path below
$logo-path: "/assets/logos/black.svg”;
$logo-path: "/assets/logos/black.svg”;
Error: Module not found: Error: Can't resolve '../../../logos/mobile.jpg’...CSS-only range
Is it possible to make a pure CSS range slider?
I'm looking to have a range such that the track colors from the left and from the right sides of the thumb are different...
Turning rating (number) into rating stars
Hello, let's say I have some testimonials and each testimonial has it's rating, (e.g. 3.5, 4, 2.5 etc.). So what I'm trying to build is if the rating is 3.5 for example it should display 3 full stars, one half star, and one empty star.
Just to give you a better example of what I'm trying to build, I have two testimonials, one has rating of 4, and other one has rating of 4.5, so this is how they should display:
If you'd like to play with it: https://codesandbox.io/s/ratings-zhlnhx?file=/src/App.js...

Schedule website
Im building some sort of a scheduling page where one is supposed to be able to schedule parts of the day.
Im very new to programming and html/css. What I have so far is just sort of the design, https://i.imgur.com/QzIMEVl.png. Would this be done in HTML or would i generate this from something like a python function from my backend?
I assume there's a way for me to get all the data inside the boxes from python....
Colorblindness accessibility
Hey everyone, it seems impossible to have a specific set of foreground/background colors pass AA and AAA contrast checks for all types of colorblindness. Any ideas on how to make a specific set of foreground/background colors as accessible as possible for different types of colorblindness or any suggestions on that.
Container query not working in VS Code?
Hi!
Why am I getting the yellow line underneath
container-type in the css file in VS Code?...
lottie JSON to Canvas
https://codepen.io/aldrinbright/pen/jOpRRXJ
I want to this JSON code to convert to canvas, I am not sure why its not working...
Style class being applied to element classList, but is being overridden by element's initial styling
My site, at full desktop size (after 1300px), will have :hover and :active stylings applied to my nav "buttons" (just <a> tags), which will give the buttons a simple 3D shadow look when hovered and clicked. When they're hovered, the buttons move slightly, and when clicked on, they move again to look like they're being pressed down, using a slight margin change and resizing of the box-shadow.
I want to have this desktop effect somewhat emulated for mobile nav. So, in lieu of :hover and :active, for mobile I've added event listeners to the nav buttons (only applied pre-1300px of course) listening for "touchstart" and "touchend" events. touchstart (finger pressdown) adds the style class emulating the effect (.mobileClickEffect), and touchend (lifting finger) takes the class away.
The .mobileClickEffect class is being successfully added and taken away as I wanted, but as you can see in the picture, for my <button>s, the .mobileClickEffect stylings are nevertheless getting overridden in CSS by the <button>'s own initial styling - despite being declared later and coming last in the <button>'s classList in the html....

Centering columns in CSS Grid
Hello,
Here is what am trying to achieve in CSS Grid.
Columns are 50% of the container minus gap.
Odd columns center to the container....
Help figuring out this layout!
FEM Project link: https://www.frontendmentor.io/challenges/multistep-form-YVAnSdqQBJ
How to plan out this layout? Are steps different html pages? Is the whole app a giant form? Is each step form in itself?
I would really love to know how it would work in real-world!...

Text sizing to container
Yet another question which feels basic, but hey, here we go ...
Is there a way to make the size of each
p fit the container content, so I don't have to go in and set every single font size?
I've been looking around, but it seems hard to do. Looked into variable fonts but that doesn't really work here.
There is no grid on this yet, but after a discussion the other day, could that be a solution since grid tend to have strong willed parents, making sure the children do what they say?...Testimonial vertical infinite scrolling
Hi
I have four Testimonial cards which are side by side what
I'm trying to do is I need the top cards should go down and bottom two should be in top where it can be in circular loop for better understanding i have given a video and images as well it's like marquee vertically where both pair of cards should loop simultaneously so how can i achieve that could anyone help
Thank you in Advance 

keyboard accessibility
Hey everyone, I have a menu where the links are keyboard accessible. I just learned that for mobile viewports where the menu is minimized, the menu links should not be keyboard accessible unless, the menu is not minimized when in the mobile viewport.
so, my nav looks like this
```html
<nav class="menu">...
Thoughts on attribute selectors
Want to open this for thoughts on using attribute selectors. I’ve always used classes for modifying elements to different presentation configurations. What I mean is, as a contrived example:
<div class=“feature feature-icon-top feature-full-width feature-reduced-padding”>
Then using simple selectors :....scrollIntoView() state of the element
Let's say I have an element that I scrollIntoView with JS, does the element becomes focused or active or something else? Because if I try to tab trough the elements after it being scrolled into view, the tab indexing starts after that element, but if in CSS I use :focus to change bg-color it doesnt work