CSS में width, min-width , max-width property की help से आप किसी element की width को define कर सकते हैं।

element{
  width : 300px;
}

element with 60px; width

CSS width example

CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS width Example</title>
  </head>
  <body>
    <p style="background-color; width : 100px;">element with 60px; width</p>
  </body>
</html>

CSS width values

CSS में width property की values कुछ इस प्रकार हैं।

  • auto : by default value है जिसे browser द्वारा apply किया जाता है।

  • % : आप percent में भी width define कर सकते हैं , जैसे 15%, 20%.

  • length : इसमें आप px / cm में width define कर सकते हैं , जैसे 15px , 20cm.

  • inherit : इस value से किसी element की width इसके parent element से determine की जाती हैं।

element with 150px; width

element with 5cm; width

element with 50%; width

element with auto width

element with initial width

element with inherit

CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS width Example</title>
  </head>
  <body>
    <p style="background-color: violet; width : 150px;">element with 150px; width</p>
    <p style="background-color: hotpink; width : 5cm;">element with 5cm; width</p>
    <p style="background-color: darkblue; width : 50%;">element with 50%; width</p>
    <p style="background-color: lightblue; width : auto;">element with auto width</p>
    <p style="background-color: lightgreen; width : initial;">element with initial width</p>
    <p style="background-color: gold; width : inherit;">element with inherit</p>
  </body>
</html>

CSS other width properties

इसके अलावा CSS हमें min-width और max-width properties भी provide कराता है , किनकी help से किसी element की width को define कर सकते हैं।

CSS min-width

इस property की help से किसी element की minimum width specify की जाती है, फिर उस width से वो element छोटा हो ही नहीं सकता है।

element{
  min-width : 200px;
}
CSS min-width example
CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS min-width Example</title>
  </head>
  <body>
    <p style="background-color: violet; min-width : 200px;">element with min-width</p>
  </body>
</html>

CSS max-width

इसकी help से किसी element की maximum width specify की जाती है , फिर उस element के अंदर कितना ही content क्यों न हो element की width define की गयी maximum width से ज्यादा नहीं बढ़ेगी।

CSS max-width example
CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS max-width Example</title>
  </head>
  <body>
  <div style="background-color: hotpink; max-width:200px;">
        <p>element with max-width, so that we can test it properly</p>
    </div>
  </body>
</html>

I Hope, अब आपको CSS में width के बारे में अच्छे से समझ आ गया होगा।

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! I'm Rahul Kumar Rajput founder of learnhindituts.com. I'm a software developer having more than 4 years of experience. I love to talk about programming as well as writing technical tutorials and blogs that can help to others. I'm here to help you navigate the coding cosmos and turn your ideas into reality, keep coding, keep learning :)

Get connected with me. :) LinkedIn Twitter Instagram Facebook

b2eprogrammers