HTML PLAYGROUND

11. Customizable Border Radius, Box Shadow, and Text Shadow

Function: Allows users to adjust element shapes and shadow effects for a unique appearance.

How to Use:

  1. Navigate to the border or shadow customization tool.
  2. Use sliders or input fields to adjust settings like radius and shadow depth.
  3. Preview changes in real time.
border-radius: 15px;
box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    
Customizable Border Radius, Box Shadow, and Text Shadow

12. Transformations: Rotate, Scale, and Skew

Function: Enables users to transform elements by rotating, scaling, or skewing them.

How to Use:

  1. Select the transformation type (e.g., rotate, scale).
  2. Input values or use sliders to adjust.
  3. Observe changes in the preview.
transform: rotate(45deg) scale(1.2) skewX(10deg);
    
Transformations: Rotate, Scale, and Skew

13. Columns and Gap Adjustments

Function: Configures layouts by defining columns and gaps between them.

How to Use:

  1. Specify the number of columns.
  2. Adjust the gap size using the controls.
  3. Apply and preview the layout.
grid-template-columns: repeat(3, 1fr);
column-gap: 20px;
    
Columns and Gap Adjustments

14. Gradient Settings and Opacity Tuning

Function: Allows applying gradient backgrounds and adjusting transparency.

How to Use:

  1. Select the gradient type and colors.
  2. Adjust positions and add transparency if needed.
  3. Preview the results in real time.
background: linear-gradient(to right, red, yellow);
opacity: 0.8;
    
Gradient Settings and Opacity Tuning

15. Typography and Alignment Options

Function: Customizes text properties like color, size, alignment, and padding.

How to Use:

  1. Select a text element to style.
  2. Adjust properties such as font size and alignment.
  3. Preview and refine the styling.
font-size: 18px;
text-align: center;
color: #333;
padding: 10px;
    
Typography and Alignment Options