This CSS tutorial describes – how to place a child DIV inside a PARENT DIV exactly horizontally centered. How to horizontally center a child DIV element inside a parent or container DIV block. A CSS tutorial by Bikram Choudhury, who conducts web designing coaching classes in Kolkata
Author: admin
Horizontal Centering of (side by side placed Multiple Child DIV)s inside container DIV
<div class="parent"> <div class="wrapper"> <div class="content"> Child block 1 </div> <div class="color_change_with_centering_text content"> Child block</div> </div> </div>
Array as private data member inside a Java class, access by getter and setter methods
Data hiding concept, private data member of a Java class described with the help of a Java array, where an array declared as private member inside a Java class. So you cannot access the array elements inside Java class directly. You can insert integers in the array, delete array elements (which are integers) and get… Continue reading Array as private data member inside a Java class, access by getter and setter methods
Using jQuery AJAX and PHP how to fetch MySQL table records array as JSON format
Using jQuery AJAX and PHP how to fetch data from a MySQL database table as JSON format. The PHP script retrieves the MySQL tables records and send to client side jQuery Script as JSON string format. This tutorial also explains how to retrieve data from MySQL database in JSON format using PHP, AJAX & jQuery… Continue reading Using jQuery AJAX and PHP how to fetch MySQL table records array as JSON format
How to create clipping mask & opacity mask in Adobe illustrator
How to create clipping mask in Adobe illustrator using multiple distinct shapes. A tutorial by Mr Bikram Choudhury , Adobe illustrator tutor Kolkata India.
Reflect tool in Adobe illustrator for text mirroring effect
Text mirroring using reflect tool in Adobe illustrator. Mirror effect of text. An Adobe illustrator tutorial by Adobe illustrator tutor Mr Bikram Choudhury Ph (+91)9163111390
Stroke Panel in Adobe illustrator – Cap, Corner and Align Stroke
This is a tutorial on Stroke Panel of Adobe illustrator. By the stroke panel you can change the thickness of a line, rectangle or circular shape drawn. Even you can make the corners rounded, you can convert a line to an arrow, double headed arrow and more. This tutorial written by Adobe illustrator training course guide… Continue reading Stroke Panel in Adobe illustrator – Cap, Corner and Align Stroke
How to add Google Analytics JavaScript Code to WordPress
A common usage of WordPress plugins is to add “JavaScript code or CSS files , CSS scripts in the head section of every WordPress page or post. In same way you can add Google Analytics code in WordPress. You can add JavaScript code in WP directly in header.php file or using a plugin. Both discussed… Continue reading How to add Google Analytics JavaScript Code to WordPress
Interfaces in Java & inheritance among interfaces in Java
Learn what are Java interfaces, and how multiple inheritance is incorporated in Java with the help of Java interfaces.
Java Multi-threading & Thread States – a tutorial
Learn Java multithreading and concurrency. Learn about Java thread states and different steps of multithreading with simple examples.