- Is there another alternative of adding the background images rather than going to a third party application like figma ?
- Is it appropriate to use dynamic view height (dvh) as attributes for the chat app's height?
Nfor Presly
@nfor2000All comments
- @rosesharonanchiSubmitted 9 months ago@nfor2000Posted 9 months ago
Hello Rose , Great effort on the project.
There is another alternative, which is actually creating the rounded-edged-rectangle and using it as some sort of background I bellieve, using css and html. You'll need a combination of positioning and linear gradients in css.
For the second question, I can't say anythiing on that. I just recently learnt about it from your code.
I'll recommend you consider downloading and studying the solutions proposed by others. I believe you can learn a lot by doing that. You can check out my repo to get insight on how I did the background. Here's a link https://github.com/nfor2000/chat-app-css-illustration-master.git.
Hope this is helpful.
0 - @dilawaizmehwishSubmitted over 1 year ago
Feedback is always welcome :)
@nfor2000Posted over 1 year agoHello , congrats on completing the challenge . I think rather than having multiple class selectors such as <div class="rating-box box-2"> ,for an element you're targeting, you could use the nth-child() selector .For instance if you wished to style the second div element with class name "rating-box", you use in style sheet .rating-box:nth-child(2){styling} .If you wish to style the third div element with the same class ,just replace the value in the parenthesis i.e nth-child(value) with 3. Hence box-1(class name) wont be neccessary .
Marked as helpful0