How to position text over an image in css

后端 未结 7 864
囚心锁ツ
囚心锁ツ 2020-11-22 03:38

How do I center a text over an image in css?

7条回答
  •  情话喂你
    2020-11-22 04:12

    A small and short way of doing the same

    HTML

    Heading 3

    Heading 5

    CSS

    .image {
            position: relative;
            margin-bottom: 20px;
            width: 100%;
            height: 300px;
            color: white;
            background: url('../../Images/myImg.jpg') no-repeat;
            background-size: 250px 250px;
        }
    

提交回复
热议问题