html - 在行内 block 按钮之间添加空间

标签 html css

HTML/CSS 新手,我想在我创建的内联按钮之间添加一些空格。不知道该怎么做。

.button {
  display: inline-block;
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.button:hover {
  background-color: green;
}
<a href="..\Requests\Request" class="button">Standard Request</a>

<a href="..\Requests\PlannerUpload" class="button">Bulk or Special Request</a>

<a href="..\Requests\NewPlannerDevice" class="button">New Device Request</a>

<a href="..\Requests\Requesttest" class="button">Tester Request</a>

此代码生成在 photo 中看到的内容

最佳答案

增加 margin 怎么样?

.button {
  display: inline-block;
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 25px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin: 10px;
}

.button:hover {
  background-color: green;
}
<a href="..\Requests\Request" class="button">Standard Request</a>

<a href="..\Requests\PlannerUpload" class="button">Bulk or Special Request</a>

<a href="..\Requests\NewPlannerDevice" class="button">New Device Request</a>

<a href="..\Requests\Requesttest" class="button">Tester Request</a>

关于html - 在行内 block 按钮之间添加空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50516242/

相关文章:

javascript - 在contenteditable div中粘贴原文中间的HTML单词后,如何防止插入符号跳到整个文本的末尾?

javascript - ExtJS - 如何仅对文本的一部分进行着色

html - 最小宽度优先于最大宽度?

html - 动画反弹属性在 Safari 浏览器中不起作用

android - 我网站上的图片无法在移动浏览器中加载

html - 如何在 MySQL 中转换 HTML 字符引用?

html - 根据百分比设置 div 背景颜色(如进度条)

html - 如何调整表格大小并使页面居中,并自动调整大小?

html - 下拉菜单中的问题

css 3字体创建换行符