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.

Post History

75%
+4 −0
Q&A Fixing vertical discrepancies with CSS

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: gr...

posted 2y ago by ajv‭

Answer
#1: Initial revision by user avatar ajv‭ · 2021-11-09T18:01:52Z (over 2 years ago)
I'm not familiar with Drupal, but I would do this with [CSS Grid](https://css-tricks.com/snippets/css/complete-guide-grid/). One possible example looks like this:

```html
<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.)