1
1
submitted 2 months ago by [email protected] to c/[email protected]

When I use the --sourcemap argument in the CLI to generate the CSS builds with sourcemaps, when the CSS uses @include, it does not update the path and therefore will not work.

In the code below, the builds are stored in the dist directory, while the CSS source code is stored in the src directory.

This is my simple code to reproduce this...

- src/
   - stylesheet.css
- dist
   - my-package.css
   - my-package.css.map
- demo.html
- bundle.css
- package.json

bundle.css

@import 'src/stylesheet.css';

demo.html

<link rel="stylesheet" href="dist/my-package.css">

package.json

{
  "name": "my-package",
  "version": "1.0.0",
  "license": "MIT",
  "scripts": {
   "build": "lightningcss --sourcemap bundle.css -o dist/my-package.css"
  },
  "devDependencies": {
    "lightningcss-cli": "^1.25.1"
  }
}

src/stylesheet.css

body {
	background-color: red;
}

dist/my-package.css output

@import "src/stylesheet.css";

/*# sourceMappingURL=dist/my-package.css.map */

What I expected from the dist/my-package.css output

@import "../src/stylesheet.css";

/*# sourceMappingURL=dist/my-package.css.map */

Does anyone know why this is the outcome? Any help will be most appreciated.

2
6
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

I created a banner image for a webpage and by specifying a width of 100% and a max-width of 1024px I got an image that scales down on small devices but also doesn't get to big on large displays. Perfect.

I decided that I'd like it to be a slideshow so I've been testing this pure CSS implementation https://codepen.io/gradar/pen/BaavLLo

The problem is that on smaller devices, the images are too big. So I tried applying the same CSS I did for my static image but it didn't work. I assume that this is due to the CSS animation specifying funky margins. Is it possible to get the same behaviour that my banner does on the codepen example?

PS: My page with the working banner image is here in case it makes it clearer https://optimumhealth.ie/yoga-festival/

3
4
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

cross-posted from: https://lemmy.world/post/2692134

SOLVED: by @[email protected] using columns property

TL;DR: I want to achieve this behavior for the menu layout, but all I can get is this; note the different menu options order.

Two days ago I asked for help for implementing the current behavior without hardcoding the menu height for each resolution step, and there were two suggestions to try display: grid. It looked promising and after reading some documentation I was able to get something very close to what I'm looking for.

The only difference being that I want the chapters to be sorted vertically (as in the current version), but what I got sorts the chapters horizontally.

Here it is (what I think is) the relevant code:

#menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row dense;
}

Sorry, I don't have the display: grid version online.

I did a quick search for display grid multiple columns vertical sort and saw this StackOverflow post: CSS Grid vertical columns with infinite rows which, if I understand correctly, says it's not possible. But I'm pretty sure I'm not understanding it correctly.

Any help will be welcome, thanks!

EDIT: I also tried grid-audto-flow: column (as suggested here) but it just renders a single row. Probably because I'm missing something...

#menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
}

EDIT-2: I was told that for grid-audto-flow: column to work I need to specify the numbers of columns. If I understand correctly, then that doesn't really help. The original issue is that I need to edit the CSS file every time a new chapter is added. Which would be the same if I have to hardcode the number of rows.

I mean, it's a bit cleaner to hardcode the number of rows than the height in pixels, but I was looking for a solution that doesn't require magic numbers in the CSS.

4
3
submitted 1 year ago by [email protected] to c/[email protected]

cross-posted from: https://lemmy.world/post/2566953

Hi, I'm an old webdev who is rusty in CSS; I learn about calc() recently and never really learnt display: flex properly.

I made some webs with a responsive menu layout (relevant CSS code posted on bottom). I tried using flex but I still had to do one ugly hack: I have the menu heights for the different resolutions hardcoded and I have to update them manually every time a new chapter is added. It's not a big deal, but I would like to know if there is a proper way to do this.

Some alternatives I've thought about:

  • The new round(), but it's too new and not supported by most browsers.
  • JavaScript

... but I feel like there must be a clean CSS-only way to achieve this.

Thanks!

Relevant CSS code (link to full stylesheet in case I missed something).

ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 624px; /* =27x23+3 | 23 = 91/4 */
  margin: 0;
  padding: 16px 16px 4px 16px;
  vertical-align: top;
}
@media screen and (max-width: 1000px) {
  ul {
    height: 840px; /* =27x31+3 | 31 = 91/3 */
  }
}
@media screen and (max-width: 582px) {
  ul {
    height: 1245px; /* =27x46+3 | 46 = 91/2 */
  }
}
@media screen and (max-width: 400px) {
  ul {
    height: auto;
  }
}
  ul li {
    list-style-type: none;
    margin: 2px 16px 2px 4px;
    font-size: 120%;
  }
  ul li a {
    display: inline-block;
    background-color: #3fa79e;
    color: #d2e7e2;
    text-decoration: none;
    padding: 2px 8px;
    border: solid 1px #d2e7e2;
  }
    ul li a:first-child {
      width: 106px;
      margin-right: -3px;
    }
    ul li a:hover {
      background-color: #144c48;
      color: #fff;
      border: solid 1px #fff;
    }
5
1
Help with Lemmy CSS (lemmy.world)
submitted 1 year ago by [email protected] to c/[email protected]

I asked for help making the expanded images fully expand here. They got something workable, but it gets rid of the sidebar. I'm hoping for something where the image just covers the sidebar.

I found the class, but I don't know how to write the CSS to make it go all the way across the screen regardless of the parent. So it would start with .img-expanded:not(.banner):not(.avatar-overlay) { } but I need to know what goes in the brackets.

6
1
submitted 1 year ago by [email protected] to c/[email protected]

This basic responsive collapse CodePen example shows a very limited range of how borders and elements are told to collapse based on a certain set of rules. This is a great jumping off point for anyone interested in how responsive media queries work.

7
1
submitted 1 year ago by [email protected] to c/[email protected]

Check out this primitive product container which showcases a brief layout for displaying products on a page in a Flex container.

8
1
submitted 1 year ago by [email protected] to c/[email protected]

Hey everyone!

Check out this not-so-basic example of how to create an alternative method of an image navigation container.

9
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

See this CodePen example which showcases how we can utilize some basic CSS Grid rules in order to setup a basic, responsive layout. This example has a ton of room for improvement, and even some bad practices. However, the basic premise of a good "jumping off point" still holds true.

10
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

Check out this CodePen in order to see just how inner and outer padding and aesthetic modification affects parents, children, and siblings. Moreover, let's see how the way the entire element's placement on the page is changed depending on our rules for the inner and outer containers.

11
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

Welcome!

So, as we iron out all of the details regarding what this sub will be "for," let's just get this first post out of the way so that everyone understands that this is not just for squatting. This space will eventually be a CSS help community within Lemmy.

More to come! Stay tuned.

PS: Looking for moderators. If your intentions are to swindle a moderation appointment from the existing mods, please do us all a favor and don't embarrass yourself by trying.

CSS

76 readers
1 users here now

A place within Lemmy where one can discuss CSS, ask for help, et-al. Please remember the human.

founded 1 year ago
MODERATORS