在CSS中调整边框的大小

问题描述 投票:-1回答:1

我想制作一个与下一张照片类似的边框:(this one)

我的代码实际上是以下内容:

<div id="ametg" class="marketorder">
      <img src="https://cdn.discordapp.com/emojis/618876932825677835.png?v=1">
      <font color="yellow"><p>
      Graines en amethyste
      </p>
      <div id="amgp">
        <p>
          Prix : <span>800</span>$/stack
        </p>
      </div>
      <br /><button onclick="orderga">
        Commander
        </button></font>
    </div>

而且,对于类的样式:

.marketorder{
      border-style: solid
    }

我希望有人能尽快帮助我!

html css styles border
1个回答
0
投票

以下代码是很好的代码:

.marketorder{
      border-style: solid;
      width: 150;
      height: 165;
      border: 5px solid black
    }

抱歉打扰大家!

© www.soinside.com 2019 - 2024. All rights reserved.