@greedee
Frontend and other stuff
Just another novice developer, getting better every day :)
Nothing here yet.
No blogs yet.
I personally think it's better to have a developer as product manager, since a developer has a more logical understanding of the project which makes easier for the whole development team to work together. What's your opinion? Do developers make good ...
I'm working on a text heavy website and someone has advised me to go with antialiased font-smoothing mentioning that browsers add a solid color to the pixels in font glyphs while rendering which makes it look different(thicker) than how the designer ...
I was going through this support info page about CSS scrollbar styling and found out that the support for CSS scrollbars is actually pretty okay(apart from Firefox and IE/edge) Since the scrollbar implementation is different among different OS and si...
CSS vw is pretty useless. The problem with vw is that, when you use vw for width, it gives you the width of the viewport which includes the scrollbar width as well. Whereas the scrollbars are not a part of the website width and are always variable ac...
CSS @apply rule(If you don't know about it) basically lets you define native CSS mixins that are similar to SASS or LESS mixins with one key difference being that you cannot pass variables to these native mixins. Without the support for passing varia...
CSS filter property has a neat filter called drop-shadow() which lets you specify the shadow for an element(pretty much the same as the box-shadow). Since the same results can be achieved with both the properties, Is it a good idea to favor using CSS...