Function sauron::px

source ·
pub fn px(v: impl Into<Value>) -> String
Expand description

pixels (1px = 1/96th of 1in)

a helper function which append px into a value

Example:

use sauron::html::units::*;

assert_eq!("10px", px(10));

MDN reference