Styling: AppShellWebPadding
        Oracle® JavaScript Extension Toolkit (JET)
            17.1.0
        G12196-01
Description
Application Shell: Web Padding
- 
        .oj-web-padding
- 
      
        Place on an element to add web padding to all sides at all display widths.Example<div class="oj-web-padding oj-web-applayout-content-nopad"> <div>
- 
        Category: AppShell Web Padding by screen size
- 
      
        Place on an element to add responsive padding.
 Examples:- oj-md-down-web-padding-end: add padding on the end (right side in left to right languages) on screen widths in the small and medium range
- oj-lg-web-padding-horizontal: add padding on the right and left sides when the screen width is in the large range or wider
- oj-lg-only-web-padding-horizontal: add padding on the right and left sides when the screen width is in the large range only
 Class template:- 
          .oj-[size](-[only|down])-web-padding(-edge)Note: Square brackets signify required token substitutions whereas parentheses signify optional token substitutions. 
- 
          Values for[size]Value (required) Name Description smSmall Small screen size range mdMedium Medium screen size range lgLarge Large screen size range xlX-Large Extra large screen size and up Values for(-[only|down])Value (optional) Name Description -onlyonly Applied to only specified screen size. -downdown Applied to all less than specified screen size. Values for(-edge)Value (optional) Name Description -startStart Applies to start edge (left edge in ltr mode, right edge in rtl mode) -endEnd Applies to end edge (right edge in ltr mode, left edge in rtl mode) -topTop Applies to top edge -bottomBottom Applies to bottom edge -horizontalHorizontal Applies to start and end edges -verticalVertical Applies to top and and bottom edges 
 
 Example<div class="oj-web-applayout-content-nopad"> <div class="oj-md-web-padding-start oj-sm-web-padding-vertical" style="border-right: 1px solid gray"> </div> <div class="oj-md-web-padding-end oj-sm-web-padding-vertical"> </div> </div>