Karthikeya Boyini has Published 2193 Articles

Fade Out Left Big Animation Effect with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 16-Mar-2020 07:40:19

96 Views

To implement Fade Down Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             ... Read More

CSS speak-punctuation property

karthikeya Boyini

karthikeya Boyini

Updated on 16-Mar-2020 07:29:58

76 Views

The speak-punctuation property specifies how punctuation is spoken.The possible values are −code − Punctuation such as semicolons, braces, and so on are to be spoken literally.none − Punctuation is not to be spoken but instead rendered naturally as various pauses.

Orphans CSS Property

karthikeya Boyini

karthikeya Boyini

Updated on 16-Mar-2020 07:24:26

178 Views

In typographic lingo, orphans are those lines of a paragraph stranded at the bottom of a page due to a page break, while windows are those lines remaining at the top of a page following a page break. Generally, printed pages do not look attractive with single lines of text ... Read More

Fade In Left Big Animation Effect with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 16-Mar-2020 07:18:58

144 Views

To implement Fade In Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             ... Read More

How to specify the target media within the document language with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 16-Mar-2020 07:13:23

109 Views

To specify the target media, use the media attribute −Example    

Fade In Right Big Animation Effect with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 13-Mar-2020 13:24:00

148 Views

To implement Fade In Right Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             ... Read More

Convert the colors of the object to 256 shades of gray with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 13-Mar-2020 13:19:34

156 Views

Use the grayscale effect to convert the colors of the object to 256 shaded of gray. The following parameter is used in this filter:ParameterDescriptionGrayConverts the colors of the object to 256 shades of gray.ExampleYou can try to run the following code to set grayscale effect:Live Demo         ... Read More

Which element is used to insert some content before an element with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 13-Mar-2020 13:04:46

128 Views

Use the :before element to insert some content before any element. ExampleYou can try to run the following code to insert some content before an element with CSS −Live Demo                    p:before {             content: url(/images/bullet.gif)   ... Read More

Java Program to Convert a Stack Trace to a String

karthikeya Boyini

karthikeya Boyini

Updated on 13-Mar-2020 13:01:05

282 Views

The Java.io.StringWriter class is a character stream that collects its output in a string buffer, which can then be used to construct a string. Closing a StringWriter has no effect.The Java.io.PrintWriter class prints formatted representations of objects to a text-output stream.Using these two classes you can convert a Stack Trace ... Read More

Java program to calculate the GCD of a given number using recursion

karthikeya Boyini

karthikeya Boyini

Updated on 13-Mar-2020 12:54:09

3K+ Views

You can calculate the GCD of given two numbers, using recursion as shown in the following program.Exampleimport java.util.Scanner; public class GCDUsingRecursion {    public static void main(String[] args) {       Scanner sc = new Scanner(System.in);       System.out.println("Enter first number :: ");       int firstNum ... Read More

Advertisements