期待どおりに動作しません:CSSのパディング/マージンは、私がこれに似たボタンたい
をしかし、これは私のものです:
.cubutton {
border-radius: 99999px; /* Round button corners here with border-radius */
background-color: #44ace8;
color: #fff;
cursor: pointer;
font-family: 'Quicksand', sans-serif;
font-size: 20px;
font-size: 2.0rem;
font-weight: 700;
letter-spacing: 1px;
padding: 20px 40px 20px 40px;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
margin-bottom: 25px;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
-webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75); /* Adds drop shadow to button. */
-moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
-webkit-transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
:
ここ
は、CSSです
私の人生にとって、私はouを理解できませんなぜパディングと余白が表示されないのですか?私はコーディングの専門家ではないので、明らかに何かを見落とすことは容易です。
<a data-sumome-listbuilder-id="11553d26-bca5-4975-91e8-e5fdf2937bf8"
class="cubutton" data-sumome-trigger="true"
href="javascript:void(0);">Take this post with you. Get the PDF version. 100% free. Click here.</a>
フォントサイズが20ピクセルの場合、これらのパディングは、それぞれ右20と40ピクセルを探します。それを増やしてみてください。またはボタンを狭くしたいですか? – ppajer
HTMLとは何ですか? – Will
新しいHTMLに基づいて私の答えを更新しました。 – Will