Visualization
    Preparing search index...

    Interface EdgeValues<T>

    Represents a group of values used for the top, bottom, left and right edges of a CSS property of an associated DOM element.

    2.1

    interface EdgeValues<T> {
        bottom: T;
        left: T;
        right: T;
        top: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    bottom: T

    Gets the value to use for the -bottom- CSS property. For instance border-bottom-color.

    2.1

    left: T

    Gets the value to use for the -left- CSS property. For instance border-left-color.

    2.1

    right: T

    Gets the value to use for the -right- CSS property. For instance border-right-color.

    2.1

    top: T

    Gets the value to use for the -top- CSS property. For instance border-top-color.

    2.1