Browser’s Default CSS

The browser provides its default CSS style to the <p> element. The default style used by the browser is defined within the style tag in the below example.

Example: The example shows the paragraph with the Browser’s Default CSS.

HTML




<!DOCTYPE html>
<html lang="en">
 
<head>
    <title>HTML paragraph tag</title>
    <style>
        p {
            display: block;
            margin-block-start: 1em;
            margin-block-end: 1em;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
        }
    </style>
</head>
 
<body>
    <p>
        This is paragraph element with
        browser's default styling
    </p>
</body>
 
</html>


Output: Its display simple output on browser screen.

This is paragraph element with browser's default styling

HTML Tag

HTML <p> tag defines the paragraph and is used to give structure to text content within a webpage. It is a block-level element & used to add the space or margins after and before the element this is done by browsers by default.

Note: The HTML <p> tag supports the Global Attributes and Event Attributes.

Similar Reads

Syntax

This is paragraph element

...

Example

HTML       HTML p Tag       

HTML p Tag

      

Welcome to GeeksforGeeks

      

A computer science portal for geeks

  ...

Custom CSS to Paragraph

...

Align Paragraph

We can give the style to the paragraph with internal, external or inline CSS styling. Here we have used CSS internal styling for defining the text color to green, font-size and the font-weight....

Browser’s Default CSS

...

Supported Browsers

The HTML

can be aligned with the CSS property text- align....

Contact Us