Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

nashi informatics solutions


{ City } chennai
< Country > india
* Profession *
User No # 125947
Total Questions Posted # 479
Total Answers Posted # 668

Total Answers Posted for My Questions # 836
Total Views for My Questions # 366893

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Answers / { nashi informatics solutions }

Question { 613 }

In how many ways can we position an HTML element? Or what are the permissible values of the position attribute?


Answer

There are mainly 7 values of position attribute that can be used to position an HTML element:
1. static: Default value. Here the element is positioned according to the normal flow of the document.
2. absolute: Here the element is positioned relative to its parent element. The final position is determined by the values of left, right, top, bottom.
3. fixed: This is similar to absolute except here the elements are positioned relative to the element.
4. relative: Here the element is positioned according to the normal flow of the document and positioned relative to its original/ normal position.
5. initial: This resets the property to its default value.
6. inherit: Here the element inherits or takes the property of its parent.

Is This Answer Correct ?    0 Yes 0 No

Question { 706 }

In how many ways you can display HTML elements?


Answer

1. inline: Using this we can display any block-level element as an inline element. The height and width attribute values of the element will not affect.
2. block: using this, we can display any inline element as a block-level element.
3. inline-block: This property is similar to inline, except by using the display as inline-block, we can actually format the element using height and width values.
4. flex: It displays the container and element as a flexible structure. It follows flexbox property.
5. inline-flex: It displays the flex container as an inline element while its content follows the flexbox properties.
6. grid: It displays the HTML elements as a grid container.
7. none: Using this property we can hide the HTML element.
Below are some of the display types which are rarely used:
1. table
2. inline-table
3. table-cell
4. table-column
5. table-row
6. inline-grid
7. list-item
8. inherit
9. initial
10. table-caption

Is This Answer Correct ?    0 Yes 0 No


Question { 716 }

What is the difference between “display: none” and “visibility: hidden”, when used as attributes to the HTML element.


Answer

When we use the attribute “visibility: hidden” for an HTML element then that element will be hidden from the webpage but still takes up space. Whereas, if we use the “display: none” attribute for an HTML element then the element will be hidden, and also it won’t take up any space on the webpage.

Is This Answer Correct ?    0 Yes 0 No

Question { 608 }

What are HTML tags?


Answer

HTML tags are used to define elements on a web page. Tags typically come in pairs, like

and

, with the content in between.

Is This Answer Correct ?    0 Yes 0 No

Question { 768 }

. What is the purpose of the declaration?


Answer

It specifies the HTML version used in the document, helping browsers render the page correctly. Example: declares HTML5.

Is This Answer Correct ?    0 Yes 0 No

Question { 863 }

. What is the difference between inline, block, and inline-block elements?


Answer

• Inline: Does not start on a new line, e.g., .
• Block: Starts on a new line, takes full width, e.g.,
.
• Inline-block: Behaves like an inline element but respects block formatting properties.

Is This Answer Correct ?    0 Yes 0 No

Question { 718 }

How is HTML5 different from HTML4?


Answer

• New semantic elements:
,
,
.
• Multimedia support:

Question { 1392 }

What is the difference between