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

CSSを使用して画像の左上の位置にテキストを配置する方法


テキストを左上に配置するには、左と上を使用します 財産。次のコードを実行して、画像の左側の位置にテキストを配置してみてください-

<!DOCTYPE html>
<html>
   <head>
      <style>
         .box {
            position: relative;
         }
         img {
            width: 100%;
            height: auto;
            opacity: 0.6;
         }
         .direction {
            position: absolute;
            top: 10px;
            left: 19px;
            font-size: 13px;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Below image has text in the top left:</p>
      <div class = "box">
         <img src = "https://www.tutorialspoint.com/python/images/python_data_science.jpg" alt = "Tutorial" width = "800" height = "400">
         <div class = "direction">Top Left Corner</div>
      </div>
   </body>
</html>

  1. CSSでテキストボタンのスタイルを設定するにはどうすればよいですか?

    以下は、CSSでテキストボタンのスタイルを設定するコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> button {    border: none;    color: white;    font-weight: bolder;   &nb

  2. CSSで光るテキストを作成するにはどうすればよいですか?

    CSSを使用して光るテキストを作成するためのコードは、次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style>    body {       background-color: rgb(0, 0, 0);       font-family