किसी तत्व की न्यूनतम और अधिकतम चौड़ाई निर्धारित करने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { max-width: 300px; min-width: 100px; background-color: red; } </style> </head> <body> <p> Below is a div with maximum and minimum width. Resize the web browser to see the effect.</p> <div>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </div> </body> </html>
आउटपुट