How To Set Max Width For P Element In CSS With Example

admin_img Posted By Bajarangi soft , Posted On 30-10-2020

In CSS The max-width property is used to set the maximum width of an element.The max-width can be specified in length values, like px, cm, etc., or in percent (%) of the containing block, or set to none (this is default. Means that there is no maximum width).So today we discuss how to do it.

How To Set Max Width For P Element In CSS With Example

Step 1:Create index.html file and implement as below code in it.
 

<p class="p1">Hello World.In this demo we are setting  Max Width to p element</p>
<p class="p2">Hello World.In this demo we are setting  Max Width to p element</p>


Step 2:Implement CSS code as below to set max width  for p element.
 

<style>
    body {
    background: #2e9ad0;
    }
    p{
        max-width: 500px;
        height: 100px;
        background-color: powderblue;
    }
</style>


Complete Code Setting Margins To P Element Using CSS .

 

<!DOCTYPE html>
<html>
<head>
    <title>How To Set Max Width For P Element In CSS With Example</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
    body {
    background: #2e9ad0;
    }
    p{
        max-width: 500px;
        height: 100px;
        background-color: powderblue;
    }
</style>
<body>
<br/><br/>
<div class="container">
    <br><br><br>
    <div class="text-center">
        <h1 id="color" style="color: white;">How To Set Max Width For P Element In CSS </h1>
    </div>
    <br>
    <div class="well">
        <p class="p1">Hello World.In this demo we are setting  Max Width to p element</p>
        <p class="p2">Hello World.In this demo we are setting  Max Width to p element</p>
    </div>
    <br>
</div>
</body>
</html>

Related Post