Mit der Eigenschaft
min-width wird die Mindestbreite der Box festgelegt. Der Wert des Attributs „min-width“ kann eine Zahl, eine Länge oder ein Prozentsatz sein.
<html> <head> </head> <body> <p style = "min-width:400px; height:100px; border:1px solid red; padding:5px; margin:10px;"> This paragraph is 100px high and min width is 400px This paragraph is 100px high and min width is 400px </p> <img alt = "logo" src = "/css/images/css.gif" width = "100" height = "100" /> </body> </html>
Das obige ist der detaillierte Inhalt vonLegen Sie mithilfe von CSS die Mindestbreite der Box fest. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!