Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Fixing vertical discrepancies with CSS

+2
−1

I have a "Our menu" webpage automatically created with Drupal 9 Views module which presents a miniature version of each menu dish webpage in that "Our menu" webpage (illustration image below).

My problem

The Drupal 9 Views module doesn't allow styling with CSS besides adding theme-dependent classes so generally the output of displaying a miniature version of each menu dish webpage in one single "Our menu" webpage is quite messy as with the following vertical discrepancies:

  • No minimal height for the heading areas
  • No minimal height for the images
  • No minimal height for the notes chapter

An image to visually describe the visual problems I have recognized

My question

What CSS approach will you take to fix the vertical discrepancies?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

"The Drupal 9 Views module doesn't effect style (CSS)" (4 comments)

1 answer

+4
−0

I'm not familiar with Drupal, but I would do this with CSS Grid. One possible example looks like this:

<html>
  <head>
    <style>
      .menu-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }
      .menu-container > * { border: 1px; border-style: solid; }
    </style>
  </head>
  <body>
    <div class="menu-container">
      <div><h2>Vegan Tali</h2></div>
      <div><h2>Vegan Burger</h2></div>
      <div><h2>Falafel</h2></div>

      <div><img src=tali.jpg></div>
      <div><img src=burger.jpg></div>
      <div><img src=falafel.jpg></div>

      <div><p>Notes: tali notes here...</p></div>
      <div><p>Notes: burger notes here...</p></div>
      <div><p>Notes: falafel notes here...</p></div>

      <div><p>Price: 120</p></div>
      <div><p>Price: 80</p></div>
      <div><p>Price: 75</p></div>
    </div>
  </body>
</html>

That arranges the children of .menu-container left-to-right in three columns, and preserves alignment between items in the same row/column. The border is unnecessary but makes it easier to see what's going on. There are many other possible variants; the link has a comprehensive list.

(I'm not entirely happy with the above; I'd prefer to group the child divs by menu item instead of visual row. I think that is possible but I'm not sure what incantation will produce it.)

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »