Posts by Danilo Thiago • 110 points
3 posts
-
0
votes1
answer598
viewsA: Menu above the page
I don’t know if it’s the best way to solve your problem, but you can do the following: *{padding: 0;margin: 0;} #menu { position: fixed; width: 100%; height: 50px; background: #ccc; top: 0px; } body…
cssanswered Danilo Thiago 110 -
0
votes1
answer69
viewsA: what is faster and lighter to render (ul-li or table)?
Friend I believe that the best way to work today would be using Fixed data Tables with React, with this becomes much more performatic, da uma olhada no https://facebook.github.io/fixed-data-table/…
-
9
votes4
answers8429
viewsQ: How to use template string in Javascript?
I’m having trouble making a Javascript function that I pass a string and an object and it fills this string with the attributes of that object, for example: var user = { nome: "danilo", idade: 29 };…