gpt4 book ai didi

html - 类到特定的 div 我应该在某处添加一些 id

转载 作者:太空宇宙 更新时间:2023-11-03 21:16:29 25 4
gpt4 key购买 nike

以下代码将灰色框应用于所有 <divs>我想将该类(class)应用于特定的 divs我应该在某处添加一些 id 吗?

<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 320px;
padding: 10px;
border: 5px solid gray;
margin: 0;
}
</style>
</head>
<body>

<h2>Calculate the total width:</h2>

<img src="klematis4_big.jpg" width="350" height="263" alt="Klematis">
<div>The picture above is 350px wide. The total width of this element is also 350px.</div>

</body>
</html>

enter image description here

最佳答案

一个 ID (#idname),或者更好的是,一个可重用的类 (.classname) 将适合设置此元素的样式。

.caption {
width: 320px;
padding: 10px;
border: 5px solid gray;
margin: 0;
}
<h2>Calculate the total width:</h2>

<img src="http://placehold.it/350x263" width="350" height="263" alt="Klematis">
<div class="caption">The picture above is 350px wide. The total width of this element is also 350px.</div>

关于html - 类到特定的 div 我应该在某处添加一些 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41701179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com