Wkhtmltopdf Grid CSS

Created on 20 November 2020, almost 4 years ago
Updated 17 July 2024, about 2 months ago

Hi! Please what is the css to output a grid in wkhtml?

I gave tried:

.col {
  float: left;
  width: 25%;
  height: 25vh;
  border: 1px solid;
  display: inline-block;
}

to no avail.

On the node, perfect

On the pdf, no grid ..

Most appreciate any guidance 🌿

πŸ’¬ Support request
Status

Closed: won't fix

Version

2.0

Component

Documentation

Created by

πŸ‡«πŸ‡·France Liliplanet Cannes

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States cindytwilliams Nashville, TN

    It will let you use a table layout...

    .parent {
    display: table;
    }
    .main {
    display: table-row;
    }
    .sidebar {
    width: 20%;
    display: table-cell;
    }
    .content {
    width: 90%;
    display: table-cell;
    }

Production build 0.71.5 2024