Universeorange.com/Docs/

Priya library Function reference Element functions css

    ready(() => {
        let div = select('div');
        div.css('position', 'absolute');
        div.css('top', 'middle');
        div.css('left', 'center');
        console.log(div);
        console.log(div.css('top'));
        div.css('delete', 'top');
        console.log(div.css('has', 'top'));
    });

With this function you can set, has, delete or get the css style.

Last modified: 2021-06-07

© 2021 universeorange.com