Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Ankitha Reddy
Page 2 of 5
Set the font variant with CSS
The CSS font-variant property controls how text is displayed, allowing you to transform lowercase letters into small capital letters or display text normally. Syntax font-variant: normal | small-caps | inherit; Parameters Value Description normal Default value. Text displays normally small-caps Converts lowercase letters to small capital letters inherit Inherits the font-variant from parent element Example: Using small-caps .small-caps { ...
Read MoreWhat are the advantages of CSS?
CSS or Cascading Style Sheets is used to design web pages, helping web developers control the layout and other visual aspects of websites. Using CSS, you can control the color of text, the style of fonts, spacing between paragraphs, how columns are sized and laid out, and what background images or colors are used. In this article, we will discuss the various advantages of CSS and why it's essential for modern web development. Key Advantages of CSS 1. Consistent Design Across Multiple Pages CSS enables uniform design across an entire website. By creating an external stylesheet and linking ...
Read MoreHow to break a loop in JavaScript?
The break statement is used to exit a loop immediately and continue executing the code after the loop. When a break is encountered, the loop terminates completely, unlike continue which only skips the current iteration. Syntax break; Breaking a for Loop The most common use of break is to exit a loop when a certain condition is met: var text = ""; ...
Read MoreList top JavaScript Frameworks
JavaScript frameworks provide structured solutions for building web applications, offering reusable components, organized code patterns, and simplified development workflows. Here are some of the most influential JavaScript frameworks that have shaped modern web development. Popular JavaScript Frameworks React Developed by Facebook and released in 2013, React is a component-based library for building user interfaces. It uses a virtual DOM for efficient rendering and has become one of the most popular choices for modern web applications. Vue.js Created by Evan You in 2014, Vue.js is a progressive framework that combines the best features of Angular and React. It ...
Read MoreCSS3 Multi-Column column-span Property
The CSS column-span property is used to specify how many columns an element should span across in a multi-column layout. This property allows specific elements to break out of the column flow and span across multiple or all columns. Syntax selector { column-span: value; } Possible Values ValueDescription noneThe element does not span multiple columns (default) allThe element spans across all columns Example: Element Spanning All Columns The following example demonstrates how a heading element spans across all columns in a multi-column layout − ...
Read MoreRotate div to -20 degrees angle with CSS
The CSS transform property with rotate() function allows you to rotate an element by a specified angle. To rotate a div to -20 degrees, you apply a negative rotation value which rotates the element clockwise. Syntax selector { transform: rotate(angle); } Example The following example demonstrates how to rotate a div to -20 degrees angle − div { width: 300px; height: 100px; ...
Read MoreCSS3 Opacity property
The CSS3 opacity property controls the transparency level of an element. It allows you to make elements partially or completely transparent, where a value of 1 means completely opaque and 0 means completely transparent. Syntax selector { opacity: value; } Possible Values ValueDescription 0.0Completely transparent (invisible) 0.550% transparent 1.0Completely opaque (default) Example: Different Opacity Levels The following example demonstrates different opacity values applied to colored elements − .box { ...
Read MoreSet the image path with CSS
The CSS border-image-source property is used to set the path of an image that will be used as a border around an element. This property allows you to replace traditional solid borders with custom images for more creative styling. Syntax selector { border-image-source: url(path-to-image) | none; } Possible Values ValueDescription url()Specifies the path to the image file noneNo image is used (default value) Example: Setting Image Border Path The following example demonstrates how to set an image path for creating a decorative border − ...
Read MoreImporting/Exporting ABAP packages to Presentation server
When working with ABAP packages, you often need to import or export them to your local presentation server for backup, sharing, or migration purposes. There are two main approaches to accomplish this task effectively. Using SAPlink Tool SAPlink is a popular open-source tool that allows you to export custom ABAP objects to your presentation server. This tool is particularly useful for exporting individual development objects or small collections of related objects. You can use SAPlink to export custom objects and package them as ...
Read MoreJava Naming Conventions
All Java components require names. Names used for classes, variables and methods are called identifiers. The naming conventions for different Java components are as follows: Package Naming Convention Class Naming Convention Interfaces Naming Convention Method Naming Convention Constants Naming Convention Variables Naming Convention Quick Summary Package Naming Convention Naming conventions for Java packages typically involve using lowercase letters. It's common to use ...
Read More