The given task, written down at the tutorblog.elearning2null.de appeared simple. The supplied material included a title.gif, other graphic files for creating buttons as well as the content in .doc files. Here is the solution of task No. 2 – Webpage „Medienproduktion“
The idea of achieving the given task was a table with and a solid border colored like the images in the given files. After programming the index.html with all the things we should include – I recognized a problem after I hit „F12“ for previewing it in FireFox – the border wasn´t solid at all. For my surprise the same file worked within the InternetExplorer just fine.
<table border="5" bordercolor="#024b6a" cellspacing="0" cellpadding="0" >
After searching through selfhtml and other various webpages for a while I found the folling expression and I tried it within my project.
<table
style="border: 5px solid #024b6a"
cellspacing="0" cellpadding="0" >
The result satisfied the idea in the way I wanted to look this table and the problem was solved.
Schreibe einen Kommentar