0
How do i get the title next to the logo?
3 ответов
+ 4
p.logo{
display: inline-block;
}
h1.title {
display:inline-block ;
You can edit this if you want it closer to the logo.
.title{
margin-left:150px;
}
+ 2
Looks like you have a syntax error on Line 9. You closed the div before you could use it.
+ 2
Another way:
div {
display:flex;
}
Or remove the div as unnecessary and use flex in the header.
https://code.sololearn.com/WuURFRZPW39x/?ref=app