1. ホーム
  2. html

[解決済み] html/cssを使用してWebサイトにボタンを配置する方法

2022-02-26 07:39:26

質問

EDIT: 背景は単に画像&です。画像を配置する部分は、私があげた

私のウェブページは現在このようになっており、ボタンを設置したい場所を示していますが、私は一般的なコーディングに非常に慣れていないため、これを実現する方法がわかりません。

ウェブサイトページの写真。

これは私のHTMLコードで、ボタンを追加するだけという非常にシンプルなものです。

<section class="slide kenBurns">
  <div class="content">
    <div class="container">
      <div><p class="ae-2">
            
          </p></div>
      <div class="wrap">
        <div class="fix-7-12">
          <!-- <h1 class="ae-1">Messes Make Memories</h1> -->
          
        </div>
      </div>
    </div>
  </div>
  <img
    src="assets/img/background/flood2.png"
    width="1450"
    height="850"
  ></img>
</section>

解決方法は?

では、次のコードを試してみてください。

   <!DOCTYPE html>
   <html>
     <head>
       <style>

       .img { 
       width:100%;
       height: auto;
       top:0;
       left:0;
       position: relative; 
       z-index: 1;
       } 

       .anybutton {
       top:11%;
       left:55%;
       width:100px;
       height:40px;
       position: absolute;
       z-index: 2;
       background: orange; 
       }

      </style>
   </head>

     <body style="text-align:center; margin: 0px;">

       <div class="mycenter" id="">
          <img src="assets/img/background/flood2.png" class="img" id="img" />
          <input type="button" class="anybutton" id="myab" value="Right Here" />
       </div>
       
      </body>
</html>