gpt4 book ai didi

html - 增加样式的宽度

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

我目前有这样的东西::

<html>
<head>
<style>
UseA
{
border-radius: 10px;
background: #BADA55;
height:500px;
width:500px;
}
</style>
</head>
<body>

<UseA>
Hello , My name is Jim Some thing to test
</UseA>

</body>
</html>

我的输出是这样的

enter image description here

如何增加样式标签的宽度和长度,使其看起来像我下面的要求

最佳答案

您的非标准元素显然默认是内联的。

http://jsfiddle.net/isherwood/52RCt/

UseA {
display: inline-block; /* or 'block', depending on your needs */
}

不过,使用标准 HTML 可能会更好:

<div class="UseA">...</div>

在后一种情况下,不需要额外的 CSS,因为默认情况下 div 是 block 级元素。

关于html - 增加样式的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20082807/

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