Results 1 to 2 of 2

Thread: html/css/audio

  1. #1
    Join Date
    Oct 2007
    Posts
    1

    html/css/audio

    i m doing a website for an assignment and i wish to remove the frame borders, i need to remove the using css

    tried this :
    Code:
    -----------------
    css file:
    -----------------
    
    #border {
    	border-top-style: none;
    	border-right-style: none;
    	border-bottom-style: none;
    	border-left-style: none;
    }
    
    ----------------------
    index.html
    ---------------------
    
    	<head>
    <div id="border">
    framesets etc....
    </div>
    	</head>

    -----------------------------------------

    and i have got these errors from the validation tool .. any suggestion how can i reduce/ remove them ?

    click me

    edit:
    how can i insert audio/video , cause i used the enbed tag and it works in internet explorer but doesnt work on firefox :S

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    You have picked on two difficult areas for validation as browsers need different code for frameset borders and for audio/video. I suspect that a lot of people accept a validation error if the page works.

    See http://forums.htmlcenter.com/showthread.php?t=2613 regarding framest borders.

    Most coders use an object tag with a nested embed tag inside for audio/video even though the embed tag doesn't validate; it's still widely used.

    There are so many sound and video formats and the code may vary depending on which you want - Flash swf or QuickTime format or mp3, mpg, there are lots.

    Have a look at w3schools:-
    http://www.w3schools.com/media/default.asp
    and
    http://www.boutell.com/newfaq/creating/playlist.html
    Last edited by Wickham; 28 Oct 2007 at 12:15 PM.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •