@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 ...
GMCGergely and 2 more commentedI’m interested in knowing how CSS affects accessibility on the web with the addition of things like flexbox, grid and psuedo elements that manipulate the content and the layout. The order in which the elements are laid out in the DOM tree might be co...
2MBen and 1 more commentedI'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 ...
MHMarco and 1 more commentedI 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...
AFNAlkshendra and 2 more commentedCSS 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...
DBNJDevesh and 3 more commentedCSS @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...
RAMRobert and 2 more commentedCSS 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...
AIAAlkshendra and 2 more commented