csswg-drafts icon indicating copy to clipboard operation
csswg-drafts copied to clipboard

[css-contain] Reference named containers for cq units

Open una opened this issue 3 years ago • 5 comments

In the [contain-level-3] spec it is possible to name containers, referencing them in @container. It is also possible to use container query units. However, it seems like there is a gap (I might be missing it in the spec) for how to reference a named container when using cq units.

An author might want to specify the container they are referencing when using the cq units (rather than defaulting to the nearest container). Using container-name wouldn't work, since it would set the name. Would it be possible to add a "container-reference"-type-property (name TBD) that can be accessed within an CSS declaration?

I.e. for illustration:

.meta p {
  container-reference: card;
  font-size: clamp(1rem, 10cqi, 2rem);
}

una avatar Oct 07 '22 18:10 una

That doesn't seem ideal, because then you cannot combine measures from multiple containers.

What if instead of cq* units we got a function that would accept an optional container name? E.g. container([w | h | min | max] [of [<custom-ident> | closest] ]?)

Then one could use custom units to have a --cq* unit that does whatever they want.

LeaVerou avatar Oct 10 '22 21:10 LeaVerou

What if instead of cq* units we got a function that would accept an optional container name? E.g. container([w | h | min | max] [of [ | closest] ]?)

This feels like the right solution to me, but I'm not sure about the exact syntax proposed. Perhaps we can use container-reference as function name to combine both your ideas?

.meta p {
  font-size: clamp(1rem, container-reference(10cqi, card), 2rem);
}

One benefit I see of doing this is that it extends the container units that have already been introduced and other than learning about a single new function, introduces no new syntax.

I'm not completely sure about the function name though. Some other ideas:

  • for-container-named()
  • for-container()
  • in-container-named()
  • from-container()
  • container()

Further, I'm not sure this syntax could fly, but this could work very well as well:

.meta p {
  /* `of` or `from` or `in` */
  font-size: clamp(1rem, 10cqi of card, 2rem); 
  font-size: clamp(1rem, calc(1rem + (3cqi of card)), 2rem);
}

nmn avatar Oct 11 '22 22:10 nmn

Or add functional versions of the units: cqw(<container-name>), cqh(<container-name>), etc.

Loirooriol avatar Oct 15 '22 16:10 Loirooriol

Or add functional versions of the units: cqw(<container-name>), cqh(<container-name>), etc.

This was my initial thought too, but it feels like it might not be valid syntax? Do we have function calls as units in CSS. Or, is it a proposal?

if the syntax 10cqw(<container-name>) is valid, then that would be the absolute best option!

nmn avatar Oct 15 '22 23:10 nmn

It wouldn't be a unit, it would be a function returning a length that could be used wherever a length is expected, just like calc(10px * 2).

We already have 10--cqw meaning calc(10 * var(--cqw)), so 10cqw() is not unreasonable. But not strictly necessary, since you could use things like calc(10 * cqw(card)) or clamp(1rem, 10 * cqi(card), 2rem).

Loirooriol avatar Oct 16 '22 00:10 Loirooriol

Agenda+ to see if we can resolve on this. I agree that the ideal is to have:

  • Function names matching the unit names we already have, eg cq*()
  • The functions can be used in calc() and return the value of a single unit, eg calc(10 * cqw(card))
  • From there, it's a bonus if we can also use the functions directly as units, eg 10cqw(card)

Meanwhile, the plain units without a function argument continue to refer to the nearest available container.

mirisuzanne avatar Oct 28 '22 19:10 mirisuzanne

The CSS Working Group just discussed [css-contain-3] Reference named containers for cq units.

The full IRC log of that discussion <dael> miriam: The request is with ontainer quereis want to query a specific container. Can do with full syntax but not w.ith units. Units give nearest container with right dimenions. It's a good default
<dael> miriam: Nice if you can get the width, height, etc from a specific container
<dael> miriam: Prop is starting ith cq functions that match unitis cqw, cqh, etc. Function takes 1 arg which is name of container. Returns the value of @unit. You can use that in calc, multiply by something, and query a specific container.
<dael> miriam: Bonus request is do we allow function appended to a value is same way as with custom units. Nice to do with functions. Functions are powerfut even without
<dael> TabAtkins: New functional unit is brand new syntax. Not a problem, but just for conservitiveness I think we want to lean existing pattern. I would think takes cq-length and contextually interprets based on cintainer name as other argument
<dael> miriam: Suggestion a function that's both multiplier and name?
<TabAtkins> container-reference(10cqi, card)
<dael> TabAtkins: Same as nmn (sp?)
<dael> TabAtkins: THis function ^ Relative to name from second argument
<ntim> q+
<dael> miriam: Could work. As soon as looking at container-reference with 2 arg does ti have broader uses? container-reference(2em, card) I would use
<dael> TabAtkins: We could define tightly and extend. If we go for more than 1 dimension, aka a calc of stuff, I suppose works. It's more work impl-wise
<dael> fantasai: All of this is longer to type than calc, right? calc with a bunch of functions would be easier
<miriam> calc(10 * cqw(card))
<miriam> container-reference(10cqi, card)
<dael> TabAtkins: What I desc is shorter than doing same thing with calc. If it's conainer reference that takes name and returns the unit length that's longer
<astearns> ack ntim
<fantasai> how is that strictly longer
<dael> ntim: Would it allow querying the units for containers outside of the container chain?
<dael> ntim: And any concerns if it is allowed?
<dael> miriam: The way I was thinking of it is resolves same as container queries so has to be ancestor
<dael> astearns: Nearest ancestor whose name matches
<dael> astearns: One minute left. Hearing this is good to have but a bit of quibbling over syntax.
<dael> miriam: Can take it back to the issue
<TabAtkins> hm, i guess functions with the name of the cq* unit lets you collapse things down to a pretty short thing.
<dael> astearns: Yep. Let's take it back to the issue and go over syntax, but let's try and take this up. Seems like it will be very useful

css-meeting-bot avatar Jan 05 '23 01:01 css-meeting-bot

TabAtkins: New functional unit is brand new syntax. Not a problem, but just for conservitiveness I think we want to lean existing pattern. I would think takes cq-length and contextually interprets based on cintainer name as other argument

I strongly disagree with container-reference(10cqi, card). Precisely, making lengths context-depend would be the complete opposite of an existing pattern. I think it will be very confusing and problematic, and I don't see any need to do that.

Like, if container-reference(10cqi, card) is valid, is container-reference(calc(10cqi), card) also valid? And container-reference(calc(10cqi + 0px), card)? Does it accept any <length>? What does it do for other units?

I'm fine with container-reference(10, cqi, card) or container-reference(10 cqi, card) or calc(10 * container-reference(cqi, card)). But passing a length seems to open an unnecessary can of worms. My preference is for 10cqi(card) or calc(10 * cqi(card)).

Loirooriol avatar Jan 05 '23 07:01 Loirooriol

Agreed with @Loirooriol, more specifically on this:

But passing a length seems to open an unnecessary can of worms. My preference is for 10cqi(card) or calc(10 * cqi(card)).

LeaVerou avatar Jan 05 '23 15:01 LeaVerou

10cqi(card) is maybe also problematic, I don't like that this is a dimension token with a simple block attached to it.

calc(10 * cqi(card)) seems much more inline with what already exists in CSS today.

romainmenke avatar Jan 05 '23 17:01 romainmenke

10cqi(card) is maybe also problematic, I don't like that this is a dimension token with a simple block attached to it.

It's not. Functional units would expand the definition of <dimension-token> from <number-token> <ident-token> to <number> [ <ident-token> | <function-token> ] (@tabatkins feel free to correct me if I'm mistaken).

LeaVerou avatar Jan 05 '23 18:01 LeaVerou

Another approach would be cqi(10, card) - which could be used inside or outside of calc. I think that avoids new patterns entirely, since it's just a set of new match functions. Used with custom units, you could do something like:

html {
  --card-i: cqi(1, card);
  --card-min: cqmin(1, card);
}

div {
  padding: 10--card-min 10--card-i;
}

I still like the functional unit approach if possible, though.

mirisuzanne avatar Jan 05 '23 19:01 mirisuzanne

@LeaVerou Note that a <dimension-token> is a single token, not <number-token> <ident-token>. For example, width: 100px has a <dimension-token> and works, width: 10/**/px has a <number-token> <ident-token> and doesn't work.

So Romain is right that with the current syntax, 10cqi(card) would be a <dimension-token> followed by a ()-block. I guess we could leave this as 2 tokens, which would have some oddities like accepting 10cqi/**/(card) as valid even if that wouldn't be valid with a function token, or change the syntax to treat it as a single token.

Or just go with the simpler calc(10 * cqi(card)). I also like the cqi(10, card) from the previous comment.

Loirooriol avatar Jan 05 '23 19:01 Loirooriol

Might be better as cqi(<name> [, <multiplier>]) to allow without the multiplier, or even a syntax that allows a name or multiplier or both. Without a name it would be similar to current cq units (maybe not needed), without a multiplier it would return a single unit (a more useful shorthand). Since idents and numbers have distinct syntax, they could be space-separated and optional without relying on order.

mirisuzanne avatar Jan 05 '23 19:01 mirisuzanne

@LeaVerou Note that a <dimension-token> is a single token, not <number-token> <ident-token>. For example, width: 100px has a <dimension-token> and works, width: 10/**/px has a <number-token> <ident-token> and doesn't work.

So Romain is right that with the current syntax, 10cqi(card) would be a <dimension-token> followed by a ()-block. I guess we could leave this as 2 tokens, which would have some oddities like accepting 10cqi/**/(card) as valid even if that wouldn't be valid with a function token, or change the syntax to treat it as a single token.

I was referring to how <dimension-token> is built up by smaller tokens, see the railroad diagrams here: https://drafts.csswg.org/css-syntax/#ref-for-typedef-dimension-token%E2%91%A2 I imagine this would change to include a <function-token> branch. The alternative, as you point out, has several issues.

Or just go with the simpler calc(10 * cqi(card)). I also like the cqi(10, card) from the previous comment.

Might be better as cqi(<name> [, <multiplier>]) to allow without the multiplier, or even a syntax that allows a name or multiplier or both. Without a name it would be similar to current cq units (maybe not needed), without a multiplier it would return a single unit (a more useful shorthand). Since idents and numbers have distinct syntax, they could be space-separated and optional without relying on order.

Is cqi(card, 10) just syntactic sugar for calc(10 * cqi(card))? If so, my preference would be to keep the cqi() definition short and not add syntactic sugar for simple math. If there's a huge need for it, we can add it later (with the syntax Miriam proposes).

LeaVerou avatar Jan 06 '23 12:01 LeaVerou

Yes, that's syntax sugar - and not as nice a sugar as 10cqi(card). So I agree it may be good to start with the functions, and then consider some form of syntax sugar as needed.

mirisuzanne avatar Jan 06 '23 16:01 mirisuzanne

Another issue with adding that syntactic sugar is that it means we can never add a second <number> argument that does something else. I just realized that if we could have had functional units, they could have been a more elegant solution for viewport units, rather than the combinatorial explosion of viewport units we now have.

LeaVerou avatar Jan 06 '23 23:01 LeaVerou

Agenda+ to see if we can resolve on adding cq*(<container-name>) math functions. Down the road, there are several possible paths to provide syntax sugar around that – via custom units or functional units or additional arguments – but this would provide the basic functionality without introducing larger language features.

mirisuzanne avatar Jan 26 '23 18:01 mirisuzanne

I suppose that was the original proposal. There is also the option of a more verbose (but more powerful) container(<unit> [, <container-name>]) – which adjusts @tabatkins proposal to fit @Loirooriol's critique. That would only require a single function, and could also be used to access other relative units computed against the container.

h2 {
  font-size: calc(container(em, my-container) * 1 + container(cqi, my-container) * 2);
}

(I have often wanted the ability to reference the 'em' value on elements other than the root…)

mirisuzanne avatar Jan 26 '23 18:01 mirisuzanne

The CSS Working Group just discussed [css-contain-3] Reference named containers for cq units, and agreed to the following:

  • RESOLVED: add a function for every container query unit that allow to reference a named container
The full IRC log of that discussion <emeyer> miriam: There are two function proposal on this
<emeyer> …There’s concern about using actual lengths in these functions
<emeyer> …Idea is to be able to query for a specific container
<emeyer> …Could query for container 10cqi and a container name
<emeyer> …Idea 1: a new function for each container unit
<emeyer> …Woulc take the argument of a container name
<emeyer> …Idea 2: Have a general container unit reference function
<emeyer> …Something like `container-unit(<unit>,<container-name>)`
<emeyer> …Could use this in calc() to do whatever math is needed
<emeyer> …This is a little bit bulky that would help authors clean this up a bit, but it’s a good start
<emeyer> …I like the second idea; probably needs some bikeshedding on the name
<TabAtkins> happy with either, honestly
<emeyer> astearns: Anyone with opinions or dislikes?
<TabAtkins> latter is verbose but the functionality makes sense
<emeyer> emilio: There are units that don’t make sense in a container function, right?
<emeyer> miriam: Yeah
<emeyer> fantasai: The only relevant units are font-relative and container-relative
<emeyer> emilio: I’m not particularly opposed, but some of these seem like they could be handled differently
<emeyer> …This feels a bit weird
<TabAtkins> q+
<emeyer> …I have a slight preference for the first option, but not strong
<astearns> ack fantasai
<astearns> ack TabAtkins
<emeyer> fantasai: I like that the first idea is easier to type and is a straightforward extension of existing syntax
<emeyer> TabAtkins: I agree with emilio that the general function is a little funky
<emeyer> …We could make a cqem unit and corresponding function, so I think I’d be happier with dedicated functions
<emilio> +1
<emeyer> …Plus a non-binding intent to always have a function that goes with any new CQ unit
<emeyer> astearns: I’m a little excited about the more vague function — why just units, why not custom properties?
<emeyer> TabAtkins: That wouldn’t be the container unit function which needs to be a math function
<astearns> ack fantasai
<emeyer> fantasai: I think we should start where we can make things so we treat this like a unit
<emeyer> miriam: The custom units proposal would let you wire that uop
<emeyer> s/uop/up/
<emeyer> astearns: Sound like we’re converging on idea one, where every unit gets a corresponding function
<fantasai> s/make things so we treat this like a unit/with this syntax which is easy to use and we'll want anyway, even if we have a more generic function. Also I think it would be nice if we could make it behave more like a unit.../
<emeyer> RESOLVED: add a function for every container query unit that allow to reference a named container
<emeyer> s/allow/allows/
<fantasai> cqi(<container-name>)

css-meeting-bot avatar Mar 22 '23 16:03 css-meeting-bot

Very nice to see this resolved! I was experimenting with this a bit, and found kinda a workaround, where we could use custom properties defined via a @property to “store” the cq unit values on parents— https://codepen.io/kizu/pen/WNgKrpW

But having this available by just using functions would be really good.

kizu avatar Mar 26 '23 13:03 kizu

following up to understand if there is a solution for this yet ?

jsanthosh-godaddy avatar Jun 12 '23 13:06 jsanthosh-godaddy

Yes, this has been accepted with a resolution above, and is marked as needing edits to the specification.

mirisuzanne avatar Jun 13 '23 17:06 mirisuzanne