CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSで画像を中央に配置


画像を中央に配置するには、 margin-left、margin-rightを使用します およびCSSをブロックする プロパティ。次のコードを実行して、画像を中央に配置してみてください

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            border: 2px solid orange;
            border-radius: 3px;
            padding: 7px;
         }
         img {
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
         }
      </style>
   </head>
   <body>
      <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt="Online Compiler" width="300" height="300">
   </body>
</html>

  1. CSSで画像を振ったり小刻みに動かしたりする方法は?

    以下はCSSで画像を振るコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img{    width: 400px;    height: 400px;    margin:50px; } img:hover {    animation

  2. CSSを使用して画像にボタンを追加するにはどうすればよいですか?

    以下は、CSSを使用して画像にボタンを追加するためのコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img{    width: 100%; } div {    position: relative;    width: 100%;   &nb