pablocattaneo
12/17/2018 - 3:05 PM

How to set table max-width 100% in css?

How to set table max-width 100% in css? #css #table

Source: https://stackoverflow.com/a/6601257/3599272

table{
    width:100%;
    table-layout: fixed;
    overflow-wrap: break-word;
}