hey guys, pls i'm still having some issues on background.. i could not fix the section 2 background.... pls help me out guys....
All feedback are welcome!!!
Thank you guys
hey guys, pls i'm still having some issues on background.. i could not fix the section 2 background.... pls help me out guys....
All feedback are welcome!!!
Thank you guys
Congratulations on completing the challenge!
About your issue: you can put a <div>
between the first and the second sections. Something like this:
<div id="section1">
your code here
</div>
<div id="bg-div"></div>
<div id="section2>
your code here
</div>
and then, on your CSS file you ajust the bg-div
by putting the background-image
and giving the div
a height
that fits the whole background image.
I had issues with placing my QR at the center of my code.
Congratulations on completing the challenge! Nice work.
About your issues: if you put the qr code image inside a div is easier to centralize
You could do something like this:
<div class=qr-code>
<img src="qr-code">
</div>
.qr-code{
display: flex;
align-items: center;
justify-content: center;
}
If you want, you can even put the texts on another div, and centralize it as well. It's easier to work with single divs, one at a time (talking from my personal experience)
Student here, looking for feedback on my CSS in particular.
Congratulations on completing this challenge!
I'm not a master coder myself, but for me your code is pretty clean, and the solution looks very nice.
The minimum change I'd make is to put the font-family on the body, then you don't need to say what's the font everytime, since it doesn't change. Of course is not necessary, it's just something I prefer to do
I have two questions:
About the first question: I use one CSS file for both. I did
This usually works.
About the icons: if I get the question right, if you use align-items: center, it may solve the problem