Posts by Gaby Chaves • 31 points
3 posts
-
1
votes1
answer195
viewsA: Create a resizable window
Try adding the following function to your project: void remove_scrollbar(){ HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO info; GetConsoleScreenBufferInfo(handle,…
-
1
votes1
answer185
viewsA: In CSS what is the difference between Pixel Density and Pixel Ratio? How does DPI, DPCM and DPPX work
Pixel Density refers to how many pixels fit in a given fixed space and is most often reported as ppi (pixels per inch) or dpi (dots per inch). We use the term pixel ratio when you are dealing with…
-
1
votes1
answer39
viewsA: How not to allow the zoom of the phone in the App?
If it’s just mobile, try it: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>