CSS to make table 100% of max-width
Like this
demo
css
table{
width:100%;
}
You need to use:
table{
width:100%;
table-layout: fixed;
overflow-wrap: break-word;
}
Demo
Like this
demo
css
table{
width:100%;
}
You need to use:
table{
width:100%;
table-layout: fixed;
overflow-wrap: break-word;
}
Demo