wu :: forums (http://www.ocf.berkeley.edu/~wwu/cgi-bin/yabb/YaBB.cgi)
riddles >> general problem-solving / chatting / whatever >> css
(Message started by: ashutoshets on Mar 10th, 2012, 2:30am)

Title: css
Post by ashutoshets on Mar 10th, 2012, 2:30am
What is css and what is use of css.

Title: Re: css
Post by towr on Mar 10th, 2012, 3:33am
CSS is a way to tell the browser how elements on the page should look. It stands for "Cascading StyleSheets". And wikipedia is bound to have a page all about it.

Title: Re: css
Post by lizzie88 on Feb 8th, 2013, 10:58am
CSS - Cascading Style Sheet., Styles define how to display HTML elements.

 8)

Title: Re: css
Post by jemyclarke on Feb 22nd, 2013, 11:59pm
Css is code webblog or  webmaster use to editing blog themes. It is to treat it as an html, extension to help simplify for design website. It is very high flexibility because it allows designer can control  entire interface of website.

Title: Re: css
Post by venkatsha on May 1st, 2013, 8:51am
CSS means cascade style sheet. Which is actually a web coding type of thing used to tell web browser about how site should render/how the design/styles of the web/html elements should be.

Title: Re: css
Post by allenhill on Jun 24th, 2013, 5:19am
Cascading style sheets (CSS) are used to determine the appearance of HTML pages in a browser. They provide an easy way to change the visual appearance of a group of HTML files without changing each individual file. CSS allows the separation of web page content (i.e., the text of a page) from the way that the content is displayed (i.e., the font, size, and color of the text). The standards for CSS are maintained by the World Wide Web Consortium (W3C).

Title: Re: css
Post by bal on Jul 7th, 2014, 6:36am
It's good technique to use external css files instead of inline styling. The code can be executed faster and you have a separate file of styling (which is easier to edit).

Title: Re: css
Post by JaneBD on Aug 7th, 2014, 4:28am
Google - "Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language."

It basically allows the programmer to style a webpage, in whatever way they please, as well as effectively section and display their pages.

It can reduce the amount of code (reducing the amount of memory necessary to store pages), which in turn can decrease the load time of your webpage.

Title: Re: css
Post by rmsgrey on Aug 7th, 2014, 6:51am
The big idea of CSS is to separate content from presentation - if you want all the (second tier) headings on your page to be purple and underlined, rather than editing each one to add the HTML tags for "purple" and "underlined", you can simply tag them all "h2" (a structural tag) and include a style definition (on page, or in a linked stylesheet) that says that all h2 elements should be purple and underlined.

The main advantages:
- it makes the page easier to maintain - if you decide you want the h2 elements to be green instead of purple, you only need to change the style rather than editing each element, and if you decide to add another heading, you only need to tag it as h2, not copy over the colour and underlining.
- it allows you to reuse the same style for multiple pages across a site - as above, it makes adding and changing things easier, and it gives your entire site a more consistent look.
- it allows the user to override some or all of your presentation decisions - that may not sound like such a good thing - after all, you designed your site to appear a certain way, so why should the user get to change that? - but users with special needs may be unable to use your site without changing the presentation, and users with strong personal preferences may be unwilling to. For most people, increased accessibility at minimal/no extra effort is a good thing.
- most of the time, it takes less code to achieve the same effect - the obvious exception is when you only have one matching element for a given style, where you end up with one copy of the presentation code either way, but CSS adds the code to specify which element(s) that presentation code should apply to. It's also possible to get seduced by the easy special effects and end up with more code overall because you're doing so much more with the presentation, but even that's mostly only going to apply to small, simple pages, or to situations where you set out to make your presentation inconsistent.


Somewhat ironically, an oft-repeated maxim among computer programmers is "don't repeat yourself" - where possible, only tell the computer something once, and then refer back to that if you need the same thing later. CSS is that idea applied to HTML presentation.

Title: Re: css
Post by wakiza33 on Oct 3rd, 2014, 7:27pm
Great info in here.

Title: Re: css
Post by Robert09 on Sep 17th, 2015, 1:17am
I'm learning CSS at the moment and also HTML. You should learn both as they interact between each other in all the webs i''ve seen!

I'm learning it in FreeCodeCamp, great resource and free xD

Title: Re: css
Post by anglia on May 2nd, 2016, 10:55pm
I think you get the enough information about CSS.

Title: Re: css
Post by gitanas on Jun 21st, 2016, 3:49am
You can have one HTML code and with good written CSS you can make it work on all, browsers, tablets and smartphones

Title: Re: css
Post by towr on Jun 21st, 2016, 9:59am
In theory, at least.



Powered by YaBB 1 Gold - SP 1.4!
Forum software copyright © 2000-2004 Yet another Bulletin Board