answersLogoWhite

0

CSS Cascading Style Sheets

A widely used style sheet language, the Cascading Style Sheets (CSS) describes the layout of HTML, XHTML, and XML documents. CSS separates the presentation from the content of the document to provide accessibility and flexibility.

423 Questions

How do you make something float in CSS?

There are four positioning types of float; static, relative, absolute and fixed. Some will accept the left, right and none values. If you wish to end them and go back to full screen, then you will need to use clear.

One slick trick is to use an element in you sytlesheet that is br.clear with the clear:all attribute and then use <br class="clear"> in the HTML

How do you remove the f-source button from an f-source drop-down menu Is there a code to be removed for this?

You need to purchase the full version of the f-source product in order to get rid of the f-source button. The trial version does not allow the f-source button to be removed.

How can I use the font Liberation Serif on a web page using CSS?

Add the name of the font to the font-family tag. Remember to include other font options for those who do not have Liberation Serif installed on their computer.

Example:




How many basic software should you I know for learning web designing?

Softwares most commonly used:

Basic:

  • Macromedia Dreamweaver (for coding)
  • Adobe Photoshop (for designing)
  • Macromedia Flash (for desiogning flash websites/contents)

Other Softwares (depends on you whether you want to use or not as per your needs) :

  • Corel Draw (for creating logos, etc)
  • Illustrator (for creating vector graphics, collage, etc)
  • And Many More (Depends on you as per your needs in web designing)

Which browsers support CSS?

All major browsers support CSS2; however, IE is kind of weird in its box model implementation.

What can you use cascading style sheets for?

Cascading Style Sheets, or CSS, is used to control the presentation of a document's markup. This allows you to write one rule and use that rule multiples times within one document or across numerous documents. If you need to make a change, you change just that one rule and the changes are presented across all of the documents.

How can you use div under div?

It's not that hard. If this is what you mean:

<div>

<div>

<h1>Some content</h1>

</div>

</div>

How do you create a paragraph using style based on is Normal style for following paragraph is Normal Font properties are Arial 14 pt Bold and font color red accent 2 darker 50 percent?

For the paragraph itself in HTML:

<p class="paragraphName">text you want in the paragraph</p>

To style it in CSS: in the documents <head> tag

<style type="text/css">

.paragraphName {

font-family:Arial, Sans-serif;

font-weight:bold;

font-color:#000000 <---- give it the RGB red accent 2 darker 50%

}

</style>

And that should do it!

What are the different types of CSS?

Versions is more appropriate; that would be 1.0, 2.0 and 2.1 currently.

What is a source code for memrise?

The Memrise website content, including program source code, is owned by Memrise Inc. Being proprietary intellectual property, the source code is not available within the public domain and therefore cannot be published here.