Design comparison
SolutionDesign
Community feedback
- @jemeneradevPosted almost 3 years ago
Maybe you could scale up the dimensions of your implementation. Compared to the design, the components are smaller.
<div class="functionalities"> <input type="button" class="item-functionalities document" > <input type="button" class="item-functionalities folder" > <input type="button" class="item-functionalities upload" > </div>I am not too sure if input is the best choice; there's not form or calculations that required a user input. As far as I am aware of, those are just for display.
Maybe it would be best to use a list:
<ul class="functionalities"> <li> <input type="button" class="item-functionalities document" > </li> <li> <input type="button" class="item-functionalities folder" > </li> <li> <input type="button" class="item-functionalities upload" > <li> Then you could inline the ul, and styli the li elements.Marked as helpful1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord