Tagged Questions
-1
votes
0answers
31 views
Where can I learn more advanced css3 [closed]
I've learnt the basic html5 and css3. However I don't feel like I know it all is there anywhere I can go and learn more css? If any one can help with videos or websites? I would be very great full!
0
votes
4answers
41 views
CSS element rule [closed]
I have a min height rule on the bottom of this page for an element I can't find the rule to edit to save my life. I just need to reduce the space on the bottom of the site.
Users have been very ...
3
votes
2answers
72 views
Position of CSS properties order matter or not?
This may seem like a simple question but I want to know how to position the property in the individual selectors, eg: display first or width first etc; Bellow is example, position is mixed with ...
0
votes
4answers
45 views
Form cleanliness, use divs or elements with display:block?
Having the following example http://jsfiddle.net/Pg8UY/, whats more correct? Divs for line breaks or using display:block so the form uses less elements to display the desired style?
<div ...
1
vote
1answer
25 views
Is it acceptable for a submit button to have a name attribute?
Usually, a submit button works fine without a name attribute. However, there are occasions where there's a need to have two submit buttons for the same form, hence making use of the name attribute to ...
-1
votes
1answer
22 views
Valid HTML-Cache-Header [closed]
whats a valid html cache-control header?
This:
Cache-Control:public, max-age=600
or this:
Cache-Control:max-age=600, public
Thank you for helping me.
1
vote
1answer
98 views
Is it absolutely necessary to use tables for HTML emails? [closed]
I have to design some HTML emails for my work. It seem obvious that everybody use tables and inline CSS for this. I would use plain text if I would have the choice, but it's not possible in this case.
...
0
votes
1answer
25 views
issue with styling over a slide show
Hey guys so I am styling up a content body over a jquery slider I built.....my issue is I need some pictures to have a float: left so they line up with each other but the parent has a margin: -6em 0 0 ...
-1
votes
1answer
36 views
How can I get the full execution time of a testcase?
From start to the end of a testcase in Selenium IDE - HTML.
What command/target to do is useful?
Please give an example?
0
votes
2answers
118 views
Should HTML Code Be All In Lower-Case [closed]
EDIT:
The answers are:
zackzurn's answer.
jrummell's comment under this question.
Visual Studio 2010 shows warnings when I use capital letters for HTML attributes. For example, this will cause ...
0
votes
3answers
49 views
DOCTYPE necessary for HTML includes?
I'm working on a new web application that has a common footer included on all pages. What I'm wondering is if it is necessary or if there is any benefit at all to having the footer file include HTML, ...
0
votes
2answers
36 views
Issue with positioning an absolute div
Hey guys I am having trouble styling my navigation so that is will always be at the same position on a page no matter the browser....
I have the following:
#Mainmenu {
width: 44%;
...
1
vote
2answers
38 views
Styles often occur in the same combination: Creating a single class or combining elements?
In one of my recent projects, I noticed that certain styles occur in the same combination repeatedly. According to the DRY principle, I should combine these styles. Regarding a good CSS style, what ...
-4
votes
2answers
76 views
How to hook a CSS class or ID to a element in PHP [closed]
I am trying to hook a CSS class to a element in PHP.
The issue that I am trying to fix is on the calendar page (can be found here) caption tag containing the month of the year i.e. January which is ...
0
votes
2answers
29 views
HTML Code Width
Is there a convention for the width of code in HTML? Some of my lines is getting really
long (due to attributes) and it's very hard to look at everything.
Thanks.
4
votes
1answer
62 views
What differs between console.log and console.dir? [duplicate]
Possible Duplicate:
What’s the difference between console.dir and console.log?
I have recently learnt the existence of console.dir().
After looking through MDN, I did not clearly ...
0
votes
5answers
84 views
php / html coding style [closed]
Variant 1:
<?php
for ($i = 0; $i<10; $i++) {
?>
<p>some text</p>
<?php
}
?>
Variant 2:
<?php
for ($i = 0; $i < 10; $i++) {
echo '<p>some ...
5
votes
6answers
119 views
Is it wrong to use CSS in this way?
Lately I'm using a CSS structure that makes HTML much cleaner but I don't know if there's something wrong with this.
Instead of using:
.top { //properties }
.top-wrapper { //properties }
.top-logo ...
1
vote
3answers
254 views
On mouseover/mouseout of javascript vs hover of css where on hover on div tag some other element get changed
I have a div element and on hover of div element i want to show an image just below the div tag.Through javascript we can do this by mouseover and mouseout event but i want to do this using css.
It ...
0
votes
4answers
112 views
Is it bad practice to surround an li tag with an a tag?
For example:
<ul>
<a href="http://google.com"><li id="someId"></li></a>
...
...
...
</ul>
It's a quick hack for the existing css styling that I have. I am ...
0
votes
2answers
66 views
How can u indent about this mixed situation?
Here is my code mixed PHP and HTML.
(It shows 4X4 table.)
How can u make this code to get more readability?
If u change HTML indentation, U should change whole HTML.
(This code is part of whole ...
2
votes
6answers
162 views
Css And Different Browsers Issues
I am writing my first Blog using Html&Css, Php And MySql.
While writing the "style.css" code I searched the web for any usefull tutorials and in every one I read: there was the same notes about ...
0
votes
1answer
95 views
Beautifying HTML with JSP mixed in
Does anyone know of an HTML beautifier that can deal with (or at least ignore) JSP? I've searched high and low... I'm not looking for an HTML validator, just something that can format the file ...
0
votes
2answers
460 views
javascript function random css style
Working on some javascript exercises for class but running into two problems. I can't seem to get the 2nd function randomViewer() to work correctly so that it pulls a random style selection from the ...
1
vote
2answers
72 views
Templates with out root level nodes
I have been experimenting with templating in js and have come across a pretty cool problem. Say you have a handlebars template. Then compile it and output it
var template =
...
0
votes
5answers
110 views
Css coding style - selector nesting [closed]
I'm vastly trying to build a solid and responsive coding style. My general question concerns styling child classes. Let me give example first:
<div class="pageHeader">
<div ...
2
votes
3answers
246 views
Why is “lower-case with dashes” the standard for HTML classes? [duplicate]
Possible Duplicate:
Why are dashes preferred for CSS selectors / HTML attributes?
Personally I use "lower-case with dashes" to format my HTML classes, which seems to be the standard these ...
5
votes
3answers
299 views
when it's acceptable to output HTML code from Javascript?
I read a piece of Javascript code, where the programmer added something similar to this:
html = "
<div class='hidden-context-menu'>
<ul><li><a ...
3
votes
5answers
748 views
Is there a recommended HTML/CSS/JavaScript coding style guide?
My team is trying to agree on a common HTML/CSS/Javascript coding style guide.
I found the Google JavaScript Style Guide, but nothing similar for HTML or CSS.
I'm specifically interested if there are ...
0
votes
2answers
480 views
Where to learn XSS (Cross Site Scripting)
Well I want to learn it but I have no idea where I can find to learn it at all. Please help me:) I also know a bit of C,C++ and some HTML not full but some of the beginning if that helps
0
votes
3answers
139 views
Using tiered PHP/HTML design? Is this right?
I read somewhere that you should separate you web pages into 3 tiers: Fetch, Logic, Presentation.
Fetch: Grab information from database/session etc
Logic: Calculate what you need
Presentation: ...
0
votes
3answers
638 views
Using html with style tags in php code
I have been given the following as a template for use in an email. I am using phpmailer to mail it out, but am having a problem with the way style tags begin and end as they are conflicting with the ...
0
votes
7answers
273 views
Coding Styles in PHP / HTML
first off, I am a trainee as an IT specialist in a large company. We are working with PHP and MySQL the most. I have several years of experience in webdesign, so I have developed my own style of ...
0
votes
2answers
99 views
HTML Table With Fixed Cells When Resolution Changes
I have the following table. The problem is that when you zoom in/out or when the resolution is different, the headers change size. How can I make them stay constant? I want everything to be on one ...
1
vote
1answer
2k views
OpenXML Word - Adding Style to heading
I am using this library to convert an html text to word format.
Everything works perfectly.
I need to style some of the text now. what I am using right now to generate document is that I have a ...
0
votes
2answers
137 views
HTML coding style [closed]
Ok...
We've got:
HTML 4.whatever...
XHTML
HTML 5
HTML 5 is supported on most desktops today, beyond that HTML 4 is probably just about unversally supported, and I'm not really sure what point of ...
3
votes
4answers
133 views
Is there any possible negative repercussions of using made up attributes in html tags
So suppose I have this tag
<a href=""></a>
and then I make up some non-standard attribute
<a lol="haha" href=""></a>
If you ask why, well so that I can conveniently use ...
5
votes
5answers
224 views
Is it Better Practice to Inject HTML Through a Server or Through JavaScript?
My current project has me accessing a database quite frequently. To do so, I make calls to my Java Servlet through jQuery Get and Post calls. I was wondering if it was better practice to build any ...
0
votes
4answers
134 views
I need a good tool to style my code - i.e. spacing , brackets, etc
I have about 4000 lines of code that I need to re-style.
I'm not doing this by hand.
Are there any tools available that will help change style?
9
votes
7answers
2k views
What is the difference between using tab and space when we do source code formatting?
When we want to give some formatting to code to make it more readable. We can use both Tab and Space (by pressing space bar on keyboard). Many time I give space manually.
I've some confusions
Is ...
0
votes
1answer
45 views
Tag format consensus [closed]
So generally in every language I write in I will try my best to stick to my 80 character line length limit but its a bit odd because of the small handful of developers I know (who I highly regard as ...
33
votes
3answers
3k views
Why are dashes preferred for CSS selectors / HTML attributes? [closed]
In the past I've always used underscores for defining class and id attributes in HTML. Over the last few years I changed over to dashes, mostly to align myself with the trend in the community, not ...
0
votes
2answers
79 views
have problem about displaying html
I have a problem about displaying HTML using data from MySQL.
I using tinyMCE, and content will save as HTML format.
When i want to display it on my browser it displays correctly.
BUT is not working ...
3
votes
4answers
2k views
html element.style.color question
I'm writing some javascript code to make some text blink but it wont work.
function start_blink(elementId) {
//var red = "#ff0000";
//var white = "#000000";
...
8
votes
2answers
1k views
In HTML5, can you nest NAV elements?
I have a site-wide main menu, which I'm currently using <nav> for. I also have a submenu, which is right under the main nav and is different for every product on the site. What's the best ...
1
vote
4answers
71 views
A way to force code-styles and conventions in a team environment for PHP/HTML/JS?
We're on a team of ~10 people, all with different styles of writing / formatting code. We've recently begun transitioning into an MVC structure (CakePHP), which has helped a lot by forcing certain ...
2
votes
2answers
310 views
good style: <br> element in html
Is it considered bad style to use <br>? I have a text element that I would like to break up into two lines, is there a more recommended way to do this or a different element I should use?
0
votes
2answers
439 views
Centering iframe + DIV from Bandcamp and Reverbnation
[edit 3] - Ok, here's the code, but Chrome and Sea Monkey and Firefox don't display it correctly. How can I change this?
<html>
<head>
<meta content="text/html; ...
0
votes
1answer
1k views
Using embedded style sheet to modify inline images
I'm having a bit of trouble trying to create an irregular line wrap around an image. Basically I'm given 6 'slices' of an image that I'm to put together to give the illusion it's one image; with text ...
0
votes
1answer
104 views
Programatically deactivating a feature in Internet Explorer
I'm currently developing a plug in for Internet Explorer, and there's a certain feature in Internet Explorer that's bothering me.
There's this feature in IE that's been appearing at least since IE7 ...



