Logo image and H1 heading on the same line

前端 未结 13 2082
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 19:45

I want to create my first web page but I encountered a problem.

I have the following code:

\"logo\"

13条回答
  •  心在旅途
    2020-12-07 20:39

    As example (DEMO):

    HTML:

    logo

    My website name

    CSS:

    .header img {
      float: left;
      width: 100px;
      height: 100px;
      background: #555;
    }
    
    .header h1 {
      position: relative;
      top: 18px;
      left: 10px;
    }
    

    DEMO

提交回复
热议问题