css-unit-absolute
RUN
<!DOCTYPE html> <html> <head> <style> div.cm {font-size: 1cm} div.mm {font-size: 10mm} div.in {font-size: 0.5in} div.px {font-size: 10px} div.pt {font-size: 10pt} div.pc {font-size: 1pc} </style> </head> <body> <div class="cm">Đây là đơn vị 1cm</div> <div class="mm">Đây là đơn vị 10mm</div> <div class="in">Đây là đơn vị 0.5in</div> <div class="px">Đây là đơn vị 10px</div> <div class="pt">Đây là đơn vị 1pt</div> <div class="pc">Đây là đơn vị 1pc</div> </body> </html>
PHÓNG TO