The css tag has no wiki summary.
4
votes
2answers
154 views
When should I start the server side coding?
I am creating a website, where users can upload their own videos. So far I am just building the main structure with HTML and CSS. Is it a better practice to write server-side code before the site ...
0
votes
3answers
78 views
Can the user not manipulate html elements which are disabled for non-permitted user
With todays browser extensions/tools is it not easily possible for a user to edit the html/css settings of a website and so enable some disabled buttons etc... to gain access to not permitted areas?
-5
votes
0answers
47 views
JavaScript and HTML Best Practices [closed]
I'm working to define some current best practices for a team of developers working on an Microsoft MVC3 Razor solution using JQuery. I've looked through Stack Exchange and many of these topics are ...
1
vote
4answers
307 views
Interview Questions and Tests for Html / CSS [closed]
I am looking for resources for good interview questions specifically for Html / CSS. I need to be able to assess the ability of the people coming for a job.
Ideally I would like a few questions and ...
18
votes
1answer
280 views
The Box Model: Internet Explorer vs. W3C
Today, the Internet Explorer Box Model problem is mostly a non-issue. Most web developers place a <!DOCTYPE> tag to enforce standards compliance, and nobody really cares about supporting ...
0
votes
1answer
52 views
HTML/CSS in Other Spoken languages? [closed]
Possible Duplicate:
Do people in non-English-speaking countries code in English?
Do developers who don't natively speak English still code using english property and tag names? Like, would ...
4
votes
3answers
133 views
What Technology can Render Medium Scale 3d Environments in a Web-Browser
I intend to make a web application that displays 3d environments that can be navigated by dragging(with a finger or mouse depending on the platform). The web app will render 3d environments of ...
3
votes
3answers
207 views
How do I prevent useless content load on the page in responsive design?
In responsive design, elements are hidden in the page with @media queries and display: none in CSS.
Ok.
In my design however browsers that have less than 800px in width should avoid loading some ...
10
votes
7answers
481 views
Practical considerations for HTML / CSS naming conventions (syntax)
Question: what are the practical considerations for the syntax in class and id values?
Note that I'm not asking about the semantics, i.e. the actual words that are being used, as for example ...
2
votes
1answer
184 views
Build tools for php, html, css, js web app development
What are some recommendations for a build tool that would allow me to upload changes to a web server or a repository and minify the js and css automatically, and possibly even run Closure compiler on ...
1
vote
0answers
65 views
confusion understanding the fluid 2 column navigation layout
I'm trying to understand the following cross-browser layout: http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm but I'm having some confusion with some of its parts and there isn't ...
-3
votes
1answer
215 views
Many Young Web Designers [closed]
I am around a lot of younger programmers, say 12-17 years old, and I noticed that many of them are not learning traditional programming, C, Lisp, etc etc... Instead out of every 10 young programmers I ...
19
votes
5answers
696 views
Referencing external javascript vs. hosting my own copy
Say I have a web app that uses jQuery. Is it better practice to host the necessary javascript files on my own servers along with my website files, or to reference them on jQuery's CDN (example: ...
8
votes
3answers
232 views
Is there a drawback in defining multiple small DRY classes, instead of bigger more repetitive classes?
I read some articles and it seems that using multiple classes in CSS is encouraged.
I am curious to find out if there is a maximum number of classes an element can have before this multiple class ...
4
votes
3answers
204 views
Is it a bad practice to use inline styling with generated code?
If I'm using a technology like Grails. It's really easy to wind up with inline styling.
Are there any downsides to auto-generating code with inline styling? Is this considered bad practice? Why?