Logo image and H1 heading on the same line

前端 未结 13 2083
佛祖请我去吃肉
佛祖请我去吃肉 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:30

    Check this.

     .header{width:100%;
        }
    
        .header img{ width: 20%; //or whatever width you like to have
    
        }
    
        .header h1{
    
        display:inline; //It will take rest of space which left by logo.
    }
    

提交回复
热议问题