Samual Sam has Published 2492 Articles

How to Add Cinematic Effects On Selfies

Samual Sam

Samual Sam

Updated on 31-Jan-2020 07:30:10

101 Views

Along with food, shelter and money internet and smart phone have become our basic necessities. Talking about smart phones along with all other criteria one unspoken necessity we all expect from our phone is front camera for selfies. A selfie for every mood, every moment happy, sad, angry or busy ... Read More

CSS padding property

Samual Sam

Samual Sam

Updated on 31-Jan-2020 06:56:55

199 Views

The padding property sets the left, right, top and bottom padding (space) of an element.ExampleYou can try to run the following code to implement padding property.                             All four padding will be 25px       ... Read More

Usage of width property with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 06:45:51

81 Views

The width property is used to set the width of an image. This property can have a value in length or in %. While giving value in %, it applies it in respect of the box in which an image is available.ExampleYou can try to run the following code to set ... Read More

How to set the cases for a text in CSS?

Samual Sam

Samual Sam

Updated on 31-Jan-2020 06:27:42

143 Views

Use the text-transform property to set the cases for a text. Possible values are none, capitalize, uppercase, lowercase.ExampleYou can try to run the following code to set the cases for a text:                            This will be capitalized                      This will be in uppercase                      This will be in lowercase          

Convert text to lowercase with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 06:06:04

3K+ Views

To convert text to lowercase with CSS, use the text-transform property with value lowercase.ExampleYou can try to run the following code to convert text to lowercase:                   Normal Text                Normal Text! This will be in lowercase!          

Indent the text of a paragraph with CSS

Samual Sam

Samual Sam

Updated on 31-Jan-2020 06:02:11

198 Views

The text-indent property is used to indent the text of a paragraph. Possible values are % or a number specifying indent space.ExampleYou can try to run the following code to implement a text-indent property in CSS:                            This text ... Read More

Set the font stretch of an element with CSS

Samual Sam

Samual Sam

Updated on 30-Jan-2020 10:36:52

55 Views

To set the font-stretch of an element, use the font-stretch property. Possible values could be normal, wider, narrower, ultra-condensed, extra-condensed, condensed, semi-condensed, semi-expanded, expanded, extra-expanded, ultra-expanded.                            If this doesn't appear to work, it is likely that ... Read More

Which property is used in CSS to control the repetition of an image in the background?

Samual Sam

Samual Sam

Updated on 30-Jan-2020 08:54:53

1K+ Views

To control the repetition of an image in the background, use the background-repeat property. You can use no-repeat value for the background-repeat property if you do not want to repeat an image, in this case, the image will display only once.ExampleYou can try to run the following code to learn ... Read More

What is pica? How to set the font size in CSS using pica?

Samual Sam

Samual Sam

Updated on 30-Jan-2020 08:50:41

619 Views

A pica is equivalent to 12 points; thus, there are 6 picas per inch. You can try to run the following code to set font size using pica (pc):Example                            This div has font size set in pica.          

How to add comments in the style sheet blocks

Samual Sam

Samual Sam

Updated on 30-Jan-2020 08:44:26

188 Views

You may need to put additional comments in your stylesheet blocks. Therefore, it is very easy to comment any part of the style sheet. You can simply put your comments inside /*.....this is a comment in style sheet.....*/.You can use /* ....*/ to comment multi-line blocks in a similar way ... Read More

Advertisements