- From: Marat Tanalin <mtanalin@yandex.ru>
- Date: Sat, 19 Oct 2013 17:03:49 +0400
- To: Bruno Racineux <bruno@hexanet.net>
- Cc: "www-style@w3.org" <www-style@w3.org>
19.10.2013, 06:54, "Bruno Racineux" <bruno@hexanet.net>:
> On 10/18/13 7:13 PM, "Marat Tanalin" <mtanalin@yandex.ru> wrote:
> Or show a valid use case.
I've already provided the case. Please read more carefully before you reply.
> Should the presence of floats within your container be conditional.
You English is somewhat tricky to parse.
> You can always use both:
>
> min-height: 200px;
>
> min-height: contain-floats;
>
> The browser will surely have to adapt to either, based on the conditional
> presence of floated children.
You're probably joking. Cascading (a basic CSS feature) will make this:
.example {
min-height: 200px;
min-height: contain-floats;
}
equivalent to this:
.example {
min-height: contain-floats;
}
Received on Saturday, 19 October 2013 13:04:23 UTC