Relative Content

Tag Archive for html-tablecalculated-columnscolumn-width

I’m trying to create a table that will calculate values automatically. Everything works except I can’t change the width to fit 3 tables in one row

<!DOCTYPE html> <html lang=”lv”> <head> <title>MLPA</title> <style> table { border-collapse: collapse; display: inline-table; /* added to make tables inline */ } th, td { border: 1px solid #000000; padding: 8px; text-align: left; } .no-scroll { overflow: hidden; width: 50px; /* or any other fixed width */ } </style> </head> <link rel=”stylesheet” href=”mlpacss.css”> <body> <h1>Kolonnu skaits</h1> […]