George John has Published 1167 Articles

table-bordered class in Bootstrap

George John

George John

Updated on 12-Jun-2020 09:24:07

223 Views

To implement a table-bordered class, you can try to run the following code −Example Live Demo           Bootstrap Table                                                Footballer Rank                                               Footballer                   Rank                   Country                                                                           Messi                   1                   Argentina                                                   Neymar                   2                   Brazil                                                   Ronaldo                   3                   Portugal                                      

Offset Columns in Bootstrap

George John

George John

Updated on 12-Jun-2020 08:59:08

6K+ Views

An offset is used to push columns over for more spacing. To use offsets on large displays, use the .col-md-offset-* classes. You can try to run the following code to learn how to work with offset columns in Bootstrap −Example Live Demo           Bootstrap Example     ... Read More

Animate CSS text-shadow property

George John

George John

Updated on 12-Jun-2020 08:44:22

2K+ Views

To implement animation on text-shadow property in CSS, you can try to run the following code −ExampleLive Demo                    div {             height: 200px;             background-color: orange;       ... Read More

Animate CSS z-index property

George John

George John

Updated on 12-Jun-2020 08:40:05

594 Views

To implement animation on z-index property with CSS, you can try to run the following code −ExampleLive Demo                    div {             position: absolute;          }          #box div ... Read More

HTML Tag

George John

George John

Updated on 11-Jun-2020 11:06:00

60 Views

The tag in HTML is used to mark a text that is no longer relevant. This tag was redefined in HTML5 to display a text that is not accurate.Let’s see an example to implement the element −Example Live Demo Exam Results    Result would be announced on ... Read More

Place autofocus in the text box when a page gets loaded without JavaScript support in HTML?

George John

George John

Updated on 04-Jun-2020 08:25:53

116 Views

The autofocus attribute is a boolean attribute. When present, it specifies that an element should automatically get focus when the page loads. An example is given below                    First Name:          Last Name:                    

What is the difference between SVG and HTML5 Canvas?

George John

George John

Updated on 01-Jun-2020 11:14:08

9K+ Views

The HTML element is a container for SVG graphics. SVG stands for Scalable Vector Graphics. SVG and useful for defining graphics such as boxes, circles, text, etc. SVG stands for Scalable Vector Graphics and is a language for describing 2D-graphics and graphical applications in XML and the XML is ... Read More

Disabling Android's chrome pull-down-to-refresh feature with HTML.

George John

George John

Updated on 01-Jun-2020 10:43:44

380 Views

The refresh button which was until now hidden in the flow menu, has been replaced by pull-down-to-refresh feature in chrome. However, some users do not need this feature in their application.body {    // disables pull-to-refresh    // allows overscroll glow effects overscroll-behavior-y: contain; }The overscroll behaviour property of CSS ... Read More

C# program to implement FizzBuzz

George John

George John

Updated on 20-Apr-2020 08:06:26

3K+ Views

Implementation of FizzBuzz involves printing numbers from 1 to 100. If the numbers are multiples of 3 then Fizz is printed. If they are multiples of 5, then Buzz is printed and if they are multiples of both 3 and 5 then FizzBuzz is printed.A program that demonstrates the implementation ... Read More

Coupling in C#

George John

George John

Updated on 14-Apr-2020 11:09:33

2K+ Views

Coupling shows the relationship between modules in C# or you can say the interdependence between modules.There are two types of coupling i.e tight and loose coupling.Loose CouplingLoose coupling is preferred since through it changing one class will not affect another class. It reduces dependencies on a class. That would mean ... Read More

Advertisements