需要帮助在 CSS 中将按钮居中

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

我正在努力使下载按钮正确。我希望它位于中心。但每次我最终都会把它放在奇怪的位置。

.PDF-Download {
  display: block;
  border-color: rgb(218, 251, 3);
  text-align: center;
  padding: 10px 10px;
  border-radius: 10px;
  background-color: rgb(204, 192, 28);
}
<p class="PDF-Download">Download PDF Summary</p>

html css
1个回答
0
投票

您所要做的就是添加保证金。

.PDF-Download {
  display: block;
  border-color: rgb(218, 251, 3);
  text-align: center;
  padding: 10px 10px;
  margin: 10px 150px;
  border-radius: 10px;
  background-color: rgb(204, 192, 28);
}
<p class="PDF-Download">Download PDF Summary</p>

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