📌  相关文章
📜  como hacer un boton flotante de volver arriba en html 代码示例

📅  最后修改于: 2022-03-11 14:53:20.737000             🧑  作者: Mango

代码示例1
#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  margin: 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s;
  z-index: 1000;