-1
私はCSSで新しいです。私のボタン用のCSSはここにありますが、緑の背景のない画像のボタンと似ている必要があります。私が色々な問題を抱えているのは、私が非常に感謝してくれるよう助けることができる場合です。ボタンの色エラー
.button {
background-color:#333;
font-family: Arial;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: -5px 0 0 100px;
cursor: pointer;
font-weight: bold;
align-items:center;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border:1px solid #333;
border-bottom-width: 3px;
-webkit-box-shadow: 2px 5px 3px 2px #333;
-moz-box-shadow: 2px 5px 3px 2px #333;
box-shadow: 2px 5px 3px 2px #333;
}
<button class="button">Access our old platform</button>
私のために働くことに感謝します。 –