Menu
×
×
正确
<style>
p {
width: 150px;
border: 1px solid #000000;
@(9): @(10);
}
</style>
<body>
<p>
This paragraph contains a very long word: supercalifragilisticexpialidocious.
</p>
</body>
<style>
p {
width: 150px;
border: 1px solid #000000;
word-wrap: break-word;
}
</style>
<body>
<p>
This paragraph contains a very long word: supercalifragilisticexpialidocious.
</p>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> p { width: 150px; border: 1px solid #000000;w3exercise_input_no_0:w3exercise_input_no_1; } </style> <body> <p> This paragraph contains a very long word: supercalifragilisticexpialidocious. </p> </body> |