Posts

Showing posts with the label user experience

The Low Down - Why the Useful Portion of the Page Isn't Maximized

Image
https://www.dukelearntoprogram.com/course2/doc/javadoc/index.html?course=2 Go there and, if you have OCD like me, you ask this question : And the response  (takeaways : CTRL-SHIFT-C to point and select an element. And you get the element.style {} standing by to let you tweak it! Also, height:75vh; in CSS gives you 75% of the viewport. Thank you Upwork. How to open Chrome dev. Tool :-  CTRL-SHIFT-C How to tweak CSS and change CSS of the page ? ● In the dev tool in the Elements window there is a tab (or section ) named Styles. ● You can add new css rules and remove the old rules i this section ( NOTE: these changes are temporary and will be removed after the page is reloaded ) How to target the section whose style you want to change? ● There is a small arrow key in the top left of the dev. tool.   ● Select that tool or just press CTRL-SHIFT-C again. ● Now hover over to the section you want to modify and click on it.  ● Make sure to select the outermost...