调整大小后按钮向不同方向移动

Buttons are moving in different directions after resizing

所以我创建了 2 个按钮,它们在包装器中并放在图像上。 当我调整 window 大小时出现问题,它们只是开始朝不同的方向移动,我的问题是如何防止这种情况发生?

我注意到你的 css 中有一个拼写错误,其中你有 left:390

替换为:

.btn-cta {
  top:40%;
  left:390;
  position: absolute;
  clear: both;
  display: block;
}

由此:

.btn-cta {
  top:40%;
  left:390px;
  position: absolute;
  clear: both;
  display: block;
}

这是否解决了您的问题?