CSS Text effects

CSS Text effects are used to add special effects to text. We will talk about the following: text-overflow word-wrap word-break writing-mode CSS Text effects-Overflow The CSS Text effects-overflow property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis (‘…‘), or display a custom string. CSS Text effect-word wrap CSS … Read more

Tkinter Button

Python Tkinter button is one of the most popularly used Tkinter Widgets in python for designing buttons in GUI’s. A button is used as a way for the user to interact with the User interface. Once the button is clicked, an action is triggered by the program. These buttons can display text or images that … Read more

Tkinker Canvas

Tkinker Canvas is used to draw shapes like lines, polygons, ovals, and more in GUI.It’s like a drawing board on which you can paint or draw anything. It considered as one of the more advanced Tkinter widgets. Usin this we can also display images. Syntax: The Parameter master represents the parent window and options can be used as key-value … Read more

CSS Printing

CSS printing is the process of setting up a print style sheet. The best method is to start from scratch and rely on the default style sheet of the browser, which takes care of the printed output pretty well by default. In this case, insert all declarations for printing at the end of your main … Read more

CSS Validation

CSS validation checks your Cascading Style Sheets to make sure that they comply with the CSS standards set by the W3 Consortium. The W3C CSS Validator checks for CSS1, CSS2, CSS3, and CSS4 properties. CSS Validation- vendor extensions CSS validator use vendor extensions to support older browsers: Extension Browser -webkit- Chrome, Safari, Opera -moz- Firefox … Read more

Java Setup

The Java development kit JDK lets the programmer to write and run code in Java language. It is a high level programming language. The latest version of Java is available at Oracle. Programmer can download it from there. Its latest version is Java SE 16. Programmer can also install the previous versions of java as … Read more

Tkinter MessageBox

Tkinter MessageBox widget is used to display message boxes in any applications in Python GUI. It provides many functions which can be used to display a message. There are some Functions used in this widget: askquestion askyesno showwarning showerror showinfo askretrycancel askokcancel Syntax: The parameters FunctionName shows the name of the message box function. the title is … Read more

Java Syntax

Java syntax is similar to that of C and C++ programming languages. It is a high level programming that is based on OOP object oriented programming. It uses classes and objects. So a code in Java language is a combination of objects and classes. These object communicate with each other to perform different functions. Each … Read more

CSS Paged media

CSS Paged media properties control the presentation of content for print or any other media that splits content into discrete pages. It allows you to set page breaks, control printable area, style left and right pages differently, and control breaks inside elements. CSS Paged media-properties It has following properties: page-break-before page-break-after page-break-inside orphans widows @page Page-break-before … Read more

Java Variables

Java variables are containers that contain different values. A variable has three basic attributes by which it is recognized. A variable has a name, data type and a memory location. Variables are used to store memory locations with a name. The initial value of a variable can change while the execution of program. Create a … Read more