Create a simple bar graph in CSS

See the Pen Simple CSS Bar Chart by Brian Kohles (@briankohles) on CodePen.

Using Div instead of tables

NOTE: NEVER DO THIS!!!!

This is BAD. HTML tables are made for Tabular data. Using Divs instead of tables makes the table not able to copy/paste into something like excel.

Tables are good for tabular data, not good for layout.