Code Monkey home page Code Monkey logo

Comments (7)

kevquirk avatar kevquirk commented on July 22, 2024

To give the tables some breathing room. You can override it with custom CSS.

from simple.css.

GitToTheHub avatar GitToTheHub commented on July 22, 2024

Ok, but when I combine it with a p there is much breathing room. I thought, it would be better, if the user would self decide if there is breathing room or not.

from simple.css.

GitToTheHub avatar GitToTheHub commented on July 22, 2024

@kevquirk

I see what's going on. When putting a p above a table, there is no big gap, as in my first screenshot. But when putting the table in a figure, there will be a big gap between the paragraph and the table. Example:

<p>A paragraph</p>
<figure> <!-- Produces big space between paragraph and table -->
  <table>
    <thead>
      <tr>
        <th>Header 1</th>
        <th>Header 2</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Column 1</td>
        <td>Column 2</td>
      </tr>
    </tbody>
  </table>
</figure>

Without the figure, everything is ok with the table and the paragraph.

from simple.css.

lkhrs avatar lkhrs commented on July 22, 2024

This is a weird one. Top margin on a table is cancelled out when under a paragraph, but when the table is wrapped in a figure and is wider than the container we get both margins.

We can fix this by setting margin: 0 on the figure > table selector, but I will need to test this further.

from simple.css.

GitToTheHub avatar GitToTheHub commented on July 22, 2024

Hi @lkhrs,

We can fix this by setting margin: 0 on the figure > table selector, but I will need to test this further.

I tested it and it works for paragraphs, but when writing text without a paragraph above the figure, the text has no spacing to the figure. Maybe you find a solution for it.

Thanks!

from simple.css.

lkhrs avatar lkhrs commented on July 22, 2024

The solution is to use a paragraph. We cannot support writing text without the appropriate elements.

from simple.css.

GitToTheHub avatar GitToTheHub commented on July 22, 2024

Ok understand, thanks for the fix 🙂

from simple.css.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.