Thursday, 11 January 2018

Em- Web Designing

Em

Incorporating relative sizing starts by using units other than pixels. One unit of measurement you can use in CSS to create relatively-sized content is the em, written as em in CSS.
Historically, the em represented the width of a capital letter M in the typeface and size being used. That is no longer the case.
Today, the em represents the size of the base font being used. For example, if the base font of a browser is 16 pixels (which is normally the default size of text in a browser), then 1 em is equal to 16 pixels. 2 ems would equal 32 pixels, and so on.
Let's take a look at two examples that show how em can be used in CSS.
.heading { font-size: 2em; }
In the example above, no base font has been specified, therefore the font size of the headingelement will be set relative to the default font size of the browser. Assuming the default font size is 16 pixels, then the font size of the heading element will be 32 pixels.
.splash-section { font-size: 18px; } .splash-section h1 { font-size: 1.5em; }
The example above shows how to use ems without relying on the default font size of the browser. Instead, a base font size (18px) is defined for all text within the splash-section element. The second CSS rule will set the font size of all h1 elements inside of splash-section relative to the base font of splash-section (18 pixels). The resulting font size of h1 elements will be 27 pixels.
Share:

Relative Measurements

Relative Measurements

Modern technology allows users to browse the Internet via multiple devices, such as desktop monitors, mobile phones, tablets, and more. Devices of different screen sizes, however, pose a problem for web developers: how can we ensure that a website is readable and visually appealing across all devices, regardless of screen size?
The answer: responsive design! Responsive design refers to the ability of a website to resize and reorganize its content based on:
  1. The size of other content on the website.
  2. The size of the screen the website is being viewed on.
In this lesson, we'll size HTML content relativeto other content on a website.
You've probably noticed the unit of pixels, or px, used in websites. Pixels are used to size content to exact dimensions. For example, if you want a div to be exactly 500 pixels wide and 100 pixels tall, then the unit of px can be used. Pixels, however, are fixed, hard codedvalues. When a screen size changes (like switching from landscape to portrait view on a phone), elements sized with pixels can appear too small, overflow the screen, or become completely illegible.
With CSS, you can avoid hard coded measurements and use relative measurementsinstead. Relative measurements offer an advantage over hard coded measurements, as they allow for the proportions of a website to remain intact regardless of screen size or layout.
Share:

Sunday, 22 October 2017

CSS-Multiple Selectors.

Multiple Selectors

In order to make CSS more concise, it's possible to add CSS styles to multiple CSS selectors all at once. This prevents writing repetitive code.
For instance, the following code has repetitive style attributes:
h1 { font-family: Georgia; } .menu { font-family: Georgia; }
Instead of writing font-family: Georgia twice for two selectors, we can separate the selectors by a comma to apply the same style to both, like this:
h1, .menu { font-family: Georgia; }
By separating the CSS selectors with a comma, both the h1 and the .menu elements will receive the font-family: Georgia styling.
Share:
Categories

CSS-Important.

Important

There is one thing that is even more specific than IDs: !important!important can be applied to specific attributes instead of full rules. It will override any style no matter how specific it is. As a result, it should almost never be used. Once !important is used, it is very hard to override.
The syntax of !important in CSS looks like this:
p { color: blue !important; } .main p { color: red; }
Since !important is used on the p selector’s color attribute, all p elements will appear blue, even though there is a more specific .main pselector that sets the color attribute to red.
The !important flag is only useful when an element appears the same way 100% of the time. Since it's almost impossible to guarantee that this will be true throughout a project and over time, it's best to avoid !important altogether. If you ever see !importantused (or are ever tempted to use it yourself) we strongly recommend reorganizing your CSS. Making your CSS more flexible will typically fix the immediate problem and make your code more maintainable in the long run.
Share:
Categories

CSS- Chaining and Specificity.

Chaining and Specificity

 This CSS selector was more specific than writing only h5. Adding more than one tag, class, or ID to a CSS selector increases the specificity of the CSS selector.
For instance, consider the following CSS:
p { color: blue; } .main p { color: red; }
Both of these CSS rules define what a p element should look like. Since .main p has a class and a p tag as its selector, only the p elements inside the .main element will appear red. This occurs despite there being another more general rule that states p elements should be blue.
Share:
Categories

CSS- Nested Elements.

Nested Elements

In addition to chaining selectors to select elements, CSS also supports selecting elements that are nested within other HTML elements. For instance, consider the following HTML:
<ul class='main-list'> <li> ... </li> <li> ... </li> <li> ... </li> </ul>
The nested <li> elements are selected with the following CSS:
.main-list li { }
In the example above, .main-list selects the .main-list element (the unordered list element). The nested <li> are selected by adding li to the selector, separated by a space, resulting in .main-list li as the final selector (note the space in the selector).
Selecting elements in this way can make our selectors even more specific by making sure they appear in the context we expect.
Share:
Categories

Saturday, 21 October 2017

JAVA- Operators.

Relational Operators

 Let's explore another set of useful operators available in Java known as relational operators.
Relational operators compare data types that have a defined ordering, like numbers (since numbers are either smaller or larger than other numbers).
Relational operators will always return a boolean value of true or false.
Here are a few relational operators:
  1.< : less than.
  2.<=: less than or equal to.
  3.>: greater than.
  4.>=: greater than or equal to.
  1. A relational operator is placed between the two operands(the terms that you want to compare using the relational operator). The result of a relational operation is printed out in the following statement:
System.out.println(5 < 7);
The example above will print out true because the statement "5 is less than 7" is true.

Equality Operators

You may have noticed that the relational operators did not include an operator for testing "equals to". In Java, equality operators are used to test equality.
The equality operators are:
  1. ==: equal to.
  2. !=: not equal to.
Equality operators do not require that operands share the same ordering. For example, you can test equality across booleanchar, or int data types. The example below combines assigning variables and using an equality operator:
char myChar = 'A'; int myInt = -2; System.out.println(myChar == myInt);
The example above will print out false because the value of myChar ('A') is not the same value as myInt ('-2').
Share: