Difference between CSS and CSS3 CSS works with HTML and provides a basic style and look to the website. CSS3 is the latest version of CSS. Some of the essential differences between CSS and CSS3 are: ✍️ Compatibility CSS - The primary purpose of CSS was to focus on formatting features. They have capabilities for positioning texts and objects. CSS is backward compatible with CSS3. CSS3 - When CSS3 code is written in CSS, it is invalid. CSS3 makes the Web Page more attractive. It takes less time to create a page. ✍️ Design CSS - It does not support responsive design. CSS3 - It is latest version and it supports responsive design. ✍️ Rounded corners and gradient CSS - When CSS3 was launched, the developers designed some images that looked like the rounded corners with the structures and backgrounds . Developers are designing a border and uploading the design to the server. CSS3 - In CSS3 the developer writes the co...
Print a webpage using javascript Creating a simple Html button using as a print button whereby it prints current webpage. This action goes to javascript. With this simple method, it is supported by all browsers including chrome, Firefox, explorer and opera. This method is called window print() method. Example Print the current page: window.print(); Definition and Usage The print() method prints the contents of the current window. The print() method opens the Print Dialog Box, which lets the user to select preferred printing options. With this, I'll demostrate to you an example as seen below. <button onlick="window.print();">Print</button> #js #printbutton #javascript #javascript_print_button