logo

Function sauron::prelude::px

[]
pub fn px<V>(v: V) -> String where
    V: Into<Value>, 
Expand description

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

a helper function which append px into a value

Example:

use jss::units::*;

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

MDN reference