Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below is my code. I have defined border style, still when the page renders, it disappears in some browsers. How to set the border?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../Lib/view.js"></script>
<script type="text/javascript" src="../Lib/ajaxhandler.js"></script>
<script type="text/javascript" src="../Lib/wysiwyg.js"></script>
<script type="text/javascript" src="../Lib/wysiwyg-settings.js"></script>
<link rel="stylesheet" href="../stylesheets/wysiwyg.css" type="text/css">
<link rel="stylesheet" type="text/css" href="../stylesheets/view.css" media="all">

<title>Political Profile</title>
</head>
<body id="main_body" >
<script type="text/javascript">
    WYSIWYG.attach('all', full);
</script>   
    <img id="top" src="../Images/top.png" alt="">
    <div id="form_container">

        <h1><a>Political Profile</a></h1>
        <form id="form_159151" class="appnitro" method="post" action="politicalprofiledbcode.php">
                    <div class="form_description">
            <h2>Political Profile</h2>
            <p>Enter candidate's political profile below.</p>
        </div>                        
            <ul >
                    <li id="li_1" >
        <label class="description" for="inCandidate">Candidate</label>
        <div id="divCandidate" name="divCandidate">
            <select id="inCandidate" name="inCandidate" " onclick="MakeRequest('divCandidate', 'inCandidate', 'SELECT memberid, name FROM candidate_db_personal');">
                <option value="">Click and wait while the list fills</option>
            </select> 
        </div> 
        </li>         
                    <li id="li_2" >
        <label class="description" for="inActivities">Activities (Paste below)
 </label>
        <div id="divActivites" name="divActivites" style="border:thin">
            <textarea id="inActivities" name="inActivities" style="border:solid"></textarea> 
        </div> 
        </li>
                    <li class="buttons">
                <input type="hidden" name="form_id" value="159151" />

                <input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
        </li>
            </ul>
        </form>   
    </div>
    <img id="bottom" src="../Images/bottom.png" alt="">
    </body>
</html>
share|improve this question
Can we have more details? Which div is having a problem? Which browser are you having trouble with? What does your CSS look like? – Daniel A. White Jan 7 '10 at 13:18
Trouble with IE. All DIVs with TextArea. – RKh Jan 7 '10 at 13:25

4 Answers

up vote 9 down vote accepted

Try being explicit about all the border properties. For example:

border:1px solid black;

See Border shorthand property. Although the other bits are optional some browsers don't set the width or colour to a default you'd expect. In your case I'd bet that it's the width that's zero unless specified.

share|improve this answer
Great. It worked. Thanks. – RKh Jan 7 '10 at 13:28

Like Paolo mentioned you need to set more fields then just border-width. The style basically puts the border on the page. Width controls the thickness, and color tells it what color to make the border.

border-style: solid; border-width:thin; border-color: #FFFFFF;

share|improve this answer

I guess this is where you are pointing at ..

    <div id="divActivites" name="divActivites" style="border:thin">
        <textarea id="inActivities" name="inActivities" style="border:solid"></textarea> 
    </div> 

Well. it must be written as border-width:thin

Here you go with the link (click here) check out the different types of Border-styles ..

you can also set the border width by writing the width in terms of pixels.. (like border-width:1px), minimum width is 1px.

share|improve this answer
Sorry this is just wrong. The spec says thin, medium and thick are acceptable values: w3.org/TR/CSS21/box.html#border-properties – DisgruntledGoat Jan 7 '10 at 13:38
@DG :: ok .. I was only following w3schools .. Never had W3C in mind .. SO the mistake happened .. I have edited accordingly .. – InfantPro'Aravind' Jan 7 '10 at 18:41

As per the W3C:

Since the initial value of the border styles is 'none', no borders will be visible unless the border style is set.

In other words, you need to set a border style (e.g. solid) for the border to show up. border:thin only sets the width. Also, the color will by default be the same as the text color (which normally doesn't look good).

I recommend setting all three styles:

style="border: thin solid black"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.