![]() |
Chirurgia cranio-cerebrală minim invazivă
Tehnicile minim invazive impun utilizarea unei tehnologii ultramoderne. Endoscoapele operatorii de diverse tipuri, microscopul operator dedicat, neuronavigația, neuroelectrofiziologia, tehnicile avansate de anestezie, chirurgia cu pacientul treaz reprezintă armamentarium fără de care neurochirurgia prin "gaura cheii" nu ar fi posibilă. Folosind tehnicile de mai sus, tratăm un spectru larg de patologii cranio-cerebrale. www.neurohope.ro |
CSS Tabs Problem
Last Updated: Sep 12 2007 13:05, Started by
DJAx3L
, Jul 28 2007 13:51
·
0

#1
Posted 28 July 2007 - 13:51

am facut aceste tab`uri css , aceste categorii
<!-- CSS Tabs --> <li><a href="Home.html"><span>Home</span></a></li> <li id="current"><a href="About.html"><span>About</span></a></li> <li><a href="Contact.html"><span>Contact</span></a></li> ei .. problema mea e cand intru pe index mi le arata in partea stanga si eu vreau sa fie pe centru, am tot bagat pe acol <center> dar tot nu a mers, nu le prea am cu tab`urile,css,stiu doar putin html dar tot nu am reusit, pliz un help |
#2
Posted 28 July 2007 - 14:48

arata-ne unde ruleaza
ce ne-ai dat e o lista (si aia incompleta) |
#3
Posted 28 July 2007 - 15:01

arata-ne unde ruleaza ce ne-ai dat e o lista (si aia incompleta) here it goes codul : ------------------------------------------------------------------------ ----------------------------------------------------- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...nsitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>x</title> <style type="text/css"> <!-- body { margin:0; padding:0; font: bold 11px/1.5em Verdana; } h2 { font: bold 14px Verdana, Arial, Helvetica, sans-serif; color: #000; margin: 0px; padding: 0px 0px 0px 15px; } /*- Menu Tabs H--------------------------- */ #tabsH { float:left; width:100%; background:#000; font-size:93%; line-height:normal; } #tabsH ul { margin:0; padding:10px 10px 0 50px; list-style:none; } #tabsH li { display:inline; margin:0; padding:0; } #tabsH a { float:left; background:url("tableftH.gif") no-repeat left top; margin:0; padding:0 0 0 4px; text-decoration:none; } #tabsH a span { float:left; display:block; background:url("tabrightH.gif") no-repeat right top; padding:5px 15px 4px 6px; color:#FFF; } /* Commented Backslash Hack hides rule from IE5-Mac \*/ #tabsH a span {float:none;} /* End IE5-Mac hack */ #tabsH a:hover span { color:#FFF; } #tabsH a:hover { background-position:0% -42px; } #tabsH a:hover span { background-position:100% -42px; } #tabsH #current a { background-position:0% -42px; } #tabsH #current a span { background-position:100% -42px; } --> </style> </head> <body> <div id="tabsH"> <ul> <!-- CSS Tabs --> <li><a href="Aboutme.html"><span>About Me</span></a></li> <li id="current"><a href="Home.html"><span>Home</span></a></li> <li><a href="Contact.html"><span>Contact</span></a></li> </ul> </div> </body> </html> ----------------------------------------------------------- ------------------------------------------------------------------------ va rog ajutati`ma sa`mi fie pe centru ![]() |
#4
Posted 28 July 2007 - 15:28

/*- Menu Tabs H--------------------------- */
#tabsH { float:left; width:100%; background:#000; font-size:93%; line-height:normal; } scoate float:left; de aici |
#5
Posted 28 July 2007 - 15:42

/*- Menu Tabs H--------------------------- */ #tabsH { float:left; width:100%; background:#000; font-size:93%; line-height:normal; } scoate float:left; de aici am scos .. si tot nu merge sa fie pe centrul paginii, doar putin se muta la o distanta de vreo 100 de pixeli de marginea din stanga, nici nu stiu cum sa explic am bagat si float:center ma gandeam ca poate merge dar fara succes.. LE: am pus aici atasament poate are careva inima mare si `mi face el codul .. si apoi sa`mi zica si care o fo chestia ca sa invat .. mersi anticipat Attached FilesEdited by DJAx3L, 28 July 2007 - 15:46. |
#6
Posted 28 July 2007 - 15:46

atunci in afara de scos float:left mai adauga si margin:0 auto;
|
#7
Posted 28 July 2007 - 15:49

#8
Posted 29 July 2007 - 09:34

copii... vbiti de o lista acolo, nu de un div. se comporta diferit. singura solutie ar fi cea implementata aici: http://www.lakeandalpinehomes.com - la meniu. Pentru ul se foloseste display:table si pt li se foloseste display:table-cell.
ATENTIE: In IE nu merg niciuna nici alta (asa ca o sa trebuiasca fie un cond-comm cu un tabel inauntru), fie sa gasiti o solutie care merge si pe IE (ceea ce va fi cam greu). |
#9
Posted 12 September 2007 - 12:20

Salut. Daca inteleg eu bine, cam asta se dorea? Merge in ie6, ff si opera. In altele nu am incercat, dar cred ca merge in safari. Pentru ie mai jos de 6 nu ma mai obosesc.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...nsitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>tabbed nav</title> <style type="text/css"> * {margin:0;padding:0} ul, li {list-style:none} body {font: bold 11px/1.5em Verdana;} ul#tabs{ float:left; background:#000; padding:3px 0; width:100%; text-align:center } ul#tabs li {display:inline;margin:0 -1px} ul#tabs a {padding:2px 6px;background:#ddd url(on.gif) repeat-x;text-decoration:none;color:#fff} ul#tabs a:hover {background:#eee url(off.gif) repeat-x} </style> </head> <body> <ul id="tabs"> <li><a href="Aboutme.html">About Me</a></li> <li id="current"><a href="Home.html">Home</a></li> <li><a href="Contact.html">link2</a></li> <li><a href="Contact.html">link3</a></li> <li><a href="Contact.html">link4</a></li> <li><a href="Contact.html">link5</a></li> </ul> </body> </html> |
#10
Posted 12 September 2007 - 13:05

Un foarte bun tutorial, plin de exemple, se gaseste la adresa css.maxdesign.com.au
|
Anunturi
▶ 0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users