×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Login
Packages
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Login
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Abhinanda Shri
has Published
99
Answers
CSS3 Multi-Column column-fill Property
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 16:37:49
The CSS3 multi-column column-fill property is used to decide, how to fill the columns.ExampleYou can try to run the following code to implement column-fill property −Live Demo<html> <head> <style> .multi { /* Column count property */ ...
Read More
CSS text-align-last property
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 14:44:15
The text-align property is used to align the last line of the text. You can try to run the following code to implement a text-align-last property in CSS3 −ExampleLive Demo<!DOCTYPE html> <html> <head> <style> .mydiv { ...
Read More
Rotate div with skew y-axis using CSS
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 14:11:25
You can try to run the following code to rotate div with skew y-axis using CSS −ExampleLive Demo<html> <head> <style> div { width: 300px; height: 100px; ...
Read More
CSS3 rgba color property
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 13:00:08
RGBA stands for Red Green Blue Alpha. It is an extension of CSS2, Alpha specifies the opacity of a color and parameter number is numerical between 0.0 to 1.0.ExampleThe following example shows rgba color property −Live Demo<html> <head> <style> #p1 {background-color:rgba(255, 0, 0, ...
Read More
Rotate Out Up Left Animation Effect with CSS
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 11:55:16
To create rotate out up left animation effect with CSS, you can try to run the following code −ExampleLive Demo<html> <head> <style> .animated { background-image: url(/css/images/logo.png); background-repeat: no-repeat; ...
Read More
Set Media Queries for different CSS style rules for different size devices
CSS
Web Development
Front End Technology
Abhinanda Shri
Published on 02-May-2018 11:13:04
To set media queries for different CSS style rules, you can try to run the following code −ExampleLive Demo<html> <head> <style> body { background-color: lightpink; } @media screen ...
Read More
How to create a multi-resolution favicon with GIMP?
Web Development
Website
Web Services
Abhinanda Shri
Published on 23-Apr-2018 20:39:50
Favicons are generally 16x16, but these days we can multi-resolution favicons also. To create a multi-resolution favicon, first, you need to create the highest-resolution version of the favicon, with an image of 256 × 256 px. Reduce the size of multiple resolutions and export, 16x16, 32x32.Open GIMP and from the ...
Read More
How to use a novalidate attribute in HTML?
HTML
Web Development
Front End Technology
Abhinanda Shri
Published on 23-Apr-2018 20:18:56
The novalidate attribute in HTML is used to signify that the form won’t get validated on submit. It is a Boolean attribute.You can try to run the following code to learn how to use novalidate attribute in HTML. In the following example, if you will add text in the <input ...
Read More
Incremental Java infinite loop
Java Programming
Java8
Java Technologies
Object Oriented Programming
Abhinanda Shri
Published on 23-Apr-2018 20:03:01
ExampleFollowing is the required program −Live Demopublic class Tester { public static void main(String args[]) { int i = 0; do { i++; System.out.println(i); }while (true); } }The output will keep ...
Read More
Java infinite for loop
Java Programming
Java8
Java Technologies
Object Oriented Programming
Abhinanda Shri
Published on 23-Apr-2018 16:54:15
Yes. Following for loop is a valid statement and causes an infinite loop.for(;;);
1
2
3
4
5
6
7
...
10
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout