Quantcast
Channel: Active questions tagged html - Stack Overflow
Viewing all articles
Browse latest Browse all 67411

How to make this div full auto size?

$
0
0

I am trying to make a restaurant menu but I can't figure out how to do it I want to make the div named "menu-spacer" the maximum size it could get.

With the "min-width" and "max-width" it only takes the minimum width.

Render screenshot:

<div class="wrapper container w-50">
                <div class="wrapper menu block">
                    <div class="menu-content">Un menu tout à fait normal</div>
                    <div class="menu-spacer"></div>
                </div>
                <div class="price block">50€</div>
            </div>
            <div class="wrapper container w-50">
                <div class="wrapper menu block">
                    <div class="menu-content">Un menu</div>
                    <div class="menu-spacer"></div>
                </div>
                <div class="price block">50€</div>
            </div>
    .wrapper {
        display: flex;
    }

    .menu-content{
        width: ;
    }

    .menu-spacer{
        width: max-content;
        border-bottom: green 2px dotted;
    }

    .menu {
        width: 80%;
        text-align: left;
        color: black;
        padding-bottom: 0px;
    }

    .price {
        width: min-content;
        text-align: right;
        color: black;
    }

Viewing all articles
Browse latest Browse all 67411

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>