Page 1 of 3 123 LastLast
Results 1 to 15 of 43
  1. #1
    ambrose is offline Freshman
    Join Date
    Feb 2010
    Posts
    21
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default What is the role of CSS?

    What is the role of CSS in web development?

  2. #2
    manik's Avatar
    manik is offline Om Shanti!
    Join Date
    Apr 2008
    Location
    Boston, USA
    Posts
    13,175
    Thanks
    744
    Thanked 699 Times in 550 Posts
    Blog Entries
    4
    Feedback Score
    4 (100%)

    Default

    beautify page elements without repeating the code; thats the main purpose.
    Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK


  3. #3
    ambrose is offline Freshman
    Join Date
    Feb 2010
    Posts
    21
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    hmmm thanx manik.
    I think You leader is your favorite.

    I Guess from your pic

  4. #4
    elexandru is offline Freshman
    Join Date
    Apr 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    You may want to change the way the generated HTML output looks. The best way to do that is with a Cascading Style Sheet (CSS), which modern browsers support. Font family, type size, colors, and other styles can be controlled with CSS for each kind of element.
    You use a text editor to create a separate CSS stylesheet file that contains all the style information, and then associate that stylesheet with all of your HTML files. If you look at the HTML output from DocBook, you'll see a lot of <div class="element"> tags, where element is the DocBook element that produced that <div>. You write your css stylesheet to associate CSS styles with specific combinations of HTML element names and DocBook class attributes (see a good CSS reference to learn how to do that). Here is a short sample that styles DocBook note output:

  5. #5
    webmasterseo is offline Freshman
    Join Date
    Apr 2010
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    CSS plays a major role during web development. CSS or Cascading Style Sheets allow web designer link to documents in a web site design. It offers control over the various elements in the web pages of your website or portal.

  6. #6
    mahesh2010 is online now Banned
    Join Date
    Jun 2010
    Location
    USA
    Posts
    194
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default

    CSS means cascading style sheet its play in major role in web development. it controls font, positioning, color and style information in a websites and it preferred by web developers for website development because they are lighter than table layouts and use less bandwidth.

  7. #7
    gurusofit is offline Sophomore
    Join Date
    Jul 2010
    Location
    Pakistan
    Posts
    128
    Thanks
    6
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    VERY GOOD QUESTION ACTUALLY CSS IS used for styling and representation or u can say formating while html is html describe web pages

  8. #8
    Zendooo is offline Junior
    Join Date
    Dec 2009
    Posts
    234
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default

    Main role of CSS is that the code are not repeat again and again on html page only calling the CSS page

  9. #9
    Jerinjames is offline Banned
    Join Date
    Feb 2010
    Posts
    38
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    CSS plays a major role during web development. CSS or Cascading Style Sheets allow web designer link to documents in a web site design. It offers control over the various elements in the web pages of your website or portal.

    CSS defines the structure and content of a web site it has little role to play in web design. CSS controls font, positioning, color and style information of the whole website. CSS is preferred by web developers for website development because they are lighter than table layouts and use less bandwidth. The style sheet is downloaded only once and stored in the cache, so relational pages down load faster.

    Hyper Text Mark up Language is not enough when used in web development, but when integrated with CSS stronger and stable web pages are created. Web developers use CSS because it allows them to position their element where ever they want in the web page. During web development the web designer find it easy to link and make columns easily using CSS. CSS requires less maintenance for a web site.

    CSS is combined with HTML or XHTML is compatible with all Internet web browsers. The websites that implement CSS appear similar in all the web browsers. CSS when used for HTML based web applications allows creating print friendly Web Pages.

  10. #10
    fma001 is offline Freshman
    Join Date
    Oct 2010
    Posts
    17
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default

    CSS is so easy. When I was first building websites, a simple change like heading size or color would have to be changed in every single page. Now it just needs to be changed in one single place. Plus, you can have really nice navigation menus without JavaScript.
    Free Web Directory for Learning Related Websites: http://www.learnthingsweb.info

  11. #11
    csm's Avatar
    csm
    csm is offline Sophomore
    Join Date
    Sep 2010
    Location
    Mallorca/Spain
    Posts
    93
    Thanks
    0
    Thanked 2 Times in 2 Posts
    Blog Entries
    2
    Feedback Score
    0

    Default

    Quote Originally Posted by Zendooo View Post
    Main role of CSS is that the code are not repeat again and again on html page only calling the CSS page
    Not true.

    CSS is for responsible for the website's layout. That's it.

    If you use tableless design or with tables.

    When you use tables you maybe write something like this:

    Code:
    <table style="border:thin solid red; border-spacing:10px;">
    Inside the style tag ... border:thin solid red; border-spacing:10px; ... are the CSS properties.

    Same for tableless design... could look like this:

    Code:
    <div style="width:120px;height:80px;margin:0 auto;background:#f0f0f0;>Text</div>
    The CSS properties are declared inside the div, those are called inline CSS.

    If you use external style sheets you have to link to those files in your head tag.

    Would look like this (in this case XHTML code):

    Code:
    <link ref="stylesheet" type="text/css" href="wherever/your/css/file/is.css" />
    Another possibility is the declaration inside the head of the document.

    This will look like this:

    Code:
    <style type="text/css">
    * {
    margin:0;
    padding:0;
    }
    html {
    height:100%;
    }
    body {
    background: #fff; 
    width: 100%;
    height: 100%;
    }
    /* more here */
    </style>
    Too bad so many people are not able to use Google to find out what CSS is.

    Read here: http://en.wikipedia.org/wiki/Cascading_Style_Sheets
    Chief Web Officer / Front-End Developer / System Engineer
    My Portfolio - My Ezine Articles Profile

  12. #12
    musclenatural is offline Freshman
    Join Date
    Oct 2010
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    css means cascading style sheets used for formatting and designing

  13. #13
    Hafsoh's Avatar
    Hafsoh is offline Junior
    Join Date
    Aug 2008
    Posts
    390
    Thanks
    2
    Thanked 8 Times in 8 Posts
    Blog Entries
    1
    Feedback Score
    0

    Default

    CSS plays a major role during web development, it defines the structure and content of a web site

  14. #14
    wanrom is offline Freshman
    Join Date
    Aug 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    The basic purpose of CSS is to separate the designing i.e style etc from Content.

  15. #15
    mahesh2010 is online now Banned
    Join Date
    Jun 2010
    Location
    USA
    Posts
    194
    Thanks
    0
    Thanked 1 Time in 1 Post
    Feedback Score
    0

    Default

    Quote Originally Posted by ambrose View Post
    What is the role of CSS in web development?
    Hi,
    Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including SVG and XUL.
    CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts.[citation needed] This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple pages to share formatting, and reduce complexity and repetition in the structural content (such as by allowing for tableless web design). CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on Braille-based, tactile devices. While the author of a document typically links that document to a CSS style sheet, readers can use a different style sheet, perhaps one on their own computer, to override the one the author has specified.
    CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element. In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable.
    The CSS specifications are maintained by the World Wide Web Consortium (W3C). Internet media type (MIME type) text/css is registered for use with CSS by RFC 2318 (March 1998).
    The popularity of CSS as a design tool has increased exponentially and is now regarded as the premier system for website design.

Page 1 of 3 123 LastLast

Similar Threads

  1. Replies: 31
    Last Post: 04-17-2012, 09:20 AM
  2. Role of forums in SEO
    By ovaismirza22 in forum Search Engine Optimization
    Replies: 41
    Last Post: 02-23-2011, 12:34 AM
  3. Role of police dogs
    By calvin.pr in forum General Talk
    Replies: 0
    Last Post: 05-11-2010, 09:23 AM
  4. Replies: 2
    Last Post: 03-27-2010, 04:19 AM
  5. Replies: 1
    Last Post: 03-19-2010, 09:12 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Partners: BOSTON WEB DEVELOPER, LLC   |   WEBCOSMO CLASSIFIEDS