Code Monkey home page Code Monkey logo

Comments (2)

lkhrs avatar lkhrs commented on July 22, 2024 1

I looked at adding a media query to make the table overflow visible for print, but unfortunately it results in a worse experience with elements that are wide enough to overflow off the screen—the part of the element that does not fit on the page gets cut off.

details elements need to be manually opened by the user prior to printing, there is no way to open them without JavaScript. We should hold the same for figure. Keeping overflow-x: auto on the figure element for print would allow the user to scroll the part of the element they want on the page into view. Without it, they have no recourse other than copy and paste for large elements.

See below for pages from the print preview. The left page has scrolling disabled, and the right page uses the current version of Simple.css with the table scrolled to the right. I’ve manually opened the details element below it.

table-overflow

If you’d like to override this behavior yourself with custom CSS, here’s the code:

@media print {
  figure {
    overflow-x: visible;
  }
}

from simple.css.

GitToTheHub avatar GitToTheHub commented on July 22, 2024

H @lkhrs,

thanks for looking into this. My idea was not to only set overflow-x to initial, because, as you say, it will cut of the content and you have no control over the content, when you print it. I would add width: 100% to figure > table, so it takes the full space and the columns are aligned automatically.

Thanks for explaining the details`-Element. I was not using this element currently and didn’t know, that it is not print-ready. So this element should not be used, if you plan to support printing of the site.

Regards, Manuel

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.