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