<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Chjxysq ghbvth!!</title> <style> .chart { width: 150px; height: 150px; border: #ddd solid 1px; position: relative; } .chart * { position: absolute; width: 40px; bottom: 10px; } .chart .max { height: 120px; background: #F90; left: 30px; } .chart .real { height: 100px; background: #9E0; left: 80px; } </style> </head> <body> <div class="chart"> <div class="max"></div> <div class="real"></div> </div> </body> </html>