CSS

449 readers
6 users here now

founded 1 year ago
MODERATORS
1
5
CSS Selectors (css-tricks.com)
submitted 6 days ago by mac to c/css
2
 
 

Hi,

No matter what I try


<style>
.FlexColumn {display: flex;flex-flow: column nowrap }
</style>

<div class="FlexColumn">
	<div>X</div>
	<div>X</div>
	<div>X</div>
	<div>X</div>
	<div>X</div>
</div>
<!-- I tried many CSS trick here... -->
<div>
   <span>X</span><br><span>X</span><br><span>X</span><br><span>X</span>
</div>

I always get a vertical gap between the characters !

Any ideas ?

Thanks.

3
 
 

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.

4
5
6
8
CSS Folding Effect (www.joshwcomeau.com)
submitted 3 months ago by starman to c/css
7
8
10
submitted 3 months ago by mac to c/css
9
13
CSS variables (gomakethings.com)
submitted 3 months ago by mac to c/css
10
11
12
13
12
submitted 4 months ago by mac to c/css
14
 
 

Video basically explaining how to use named grid columns to avoid those negative margins for breakout and full-width sections

15
21
submitted 4 months ago* (last edited 4 months ago) by starman to c/css
16
 
 

cross-posted from: https://programming.dev/post/11085588

We just tagged the first public v4.0.0-alpha so you can start experimenting with it and help us get to a stable release later this year.

17
11
CSS Relative colors (techhub.iodigital.com)
submitted 6 months ago by mac to c/css
18
22
submitted 6 months ago by mac to c/css
19
3
submitted 7 months ago* (last edited 7 months ago) by mac to c/css
 
 

^ preview there seems to have not been created well and made the code block with a header a header but correct text is in the article

20
 
 

cross-posted from: https://programming.dev/post/7667731

Hi,

As CSS do not have a color-overlay[^1] filter.

There is some heavy work around:

https://isotropic.co/tool/hex-color-to-css-filter/

that use a combination of CSS filter to target the desired color...

Those online calculators are neat, but I would like an offline version, in case the provided one become inaccessible.

I've downloaded the zip of https://codepen.io/sosuke/pen/Pjoqqp

But it doesn't work locally.. :/

So I would like to know, if someone know one in 🐍 Python ? or how can I make one then ?

Or if someone know another way to have the color-overlay[^1] effect in html\css, I'm all ears !

Thank.

[^1]: To apply like in Photoshop a color on the shape of the image (so not on the parts that have transparency.

21
4
CSS animation-composition (12daysofweb.dev)
submitted 7 months ago by mac to c/css
22
 
 

cross-posted from: https://programming.dev/post/7555221

There’s nothing like building a major new product for finding all the features you wish you had in your own tools, so we capitalized on that inspiration and turned it into this — Tailwind CSS v3.4.

23
3
CSS Wrapped: 2023 (developer.chrome.com)
submitted 7 months ago by mac to c/css
24
25
4
submitted 7 months ago by mac to c/css
view more: next ›