Autor |
Nachricht |
-

webdesign-grams
|
28.03.2009 um 21:40 (UTC) Titel: Suche ein CSS Gerüst |
|
|
Hy ich brauche ein CSS Gerüst, wo ich meine Designs drauf aufbauen kann.
Hat jemand was für mich?
Meldet euch oder schreib mit per VIA.
Danke
Mike Grams  |
|
↑
|
|
 |
-

slackline
|
28.03.2009 um 21:42 (UTC) Titel: |
|
|
|
|
↑
|
|
 |
-

webdesign-grams
|
|
↑
|
|
 |
-

opydesign
|
28.03.2009 um 21:55 (UTC) Titel: |
|
|
www.green-designs.de.tl meinte slacklinen, ist nen Buchstabendreher gewesen.
Liebe Grüße. ______________
www.gidf.de
Zuletzt bearbeitet von opydesign am 28.03.2009, 22:57, insgesamt 2-mal bearbeitet
|
|
↑
|
|
 |
-

webdesign-grams
|
28.03.2009 um 21:58 (UTC) Titel: |
|
|
Oky da ist aber nur ein IceBlue generator.....
Ich brauche ein CSS Gerüst.....  |
|
↑
|
|
 |
-

slackline
|
28.03.2009 um 21:59 (UTC) Titel: |
|
|
|
|
↑
|
|
 |
-

meinepersoenlicheseite
Wohnort: Sesamstraße
|
28.03.2009 um 22:01 (UTC) Titel: |
|
|
http://www.homepage-baukasten.de/forum/viewtopic.php?t=62368
Schau mal auf diesem Link nach, vielleicht kann der ja irgendwie ein wenig weiterhelfen, ich weiß ja nicht so genau was Du mit Grundgerüst meinst, hier sind jedenfalls ein paar Beispiele bei, die man sich auch selber abändern kann.
Liebe Grüße. ______________
www.gidf.de
Ice Blue&CSS-Design
Zuletzt bearbeitet von meinepersoenlicheseite am 28.03.2009, 23:02, insgesamt einmal bearbeitet
|
|
↑
|
|
 |
-

test-grams
|
28.03.2009 um 22:09 (UTC) Titel: |
|
|
Ich habe ein gefunden, aber der Code Muss glaubich noch geändert werden....
Code: <!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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Dynamic Drive: CSS Left, Top, Bottom and Right Frames Layout</title>
<style type="text/css">
body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}
#framecontentLeft, #framecontentRight{
position: absolute;
top: 0;
left: 0;
width: 200px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: navy;
color: white;
}
#framecontentRight{
left: auto;
right: 0;
width: 150px; /*Width of right frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: navy;
color: white;
}
#framecontentTop, #framecontentBottom{
position: absolute;
top: 0;
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
right: 150px; /*Set right value to WidthOfRightFrameDiv*/
width: auto;
height: 120px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: navy;
color: white;
}
#framecontentBottom{
top: auto;
height: 100px; /*Height of bottom frame div*/
bottom: 0;
}
#maincontent{
position: fixed;
top: 120px; /*Set top value to HeightOfTopFrameDiv*/
bottom: 100px; /*Set bottom value to HeightOfBottomFrameDiv*/
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
right: 150px; /*Set right value to WidthOfRightFrameDiv*/
overflow: auto;
background: #fff;
}
.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}
* html body{ /*IE6 hack*/
padding: 120px 150px 100px 200px; /*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv HeightOfBottomFrameDiv WidthOfLeftFrameDiv)*/
}
* html #maincontent{ /*IE6 hack*/
height: 100%;
width: 100%;
}
* html #framecontentTop, * html #framecontentBottom{ /*IE6 hack*/
width: 100%;
}
</style>
<script type="text/javascript">
/*** Temporary text filler function. Remove when deploying template. ***/
var gibberish=["This is just some filler text", "Welcome to Dynamic Drive CSS Library", "Demo content nothing to read here"]
function filltext(words){
for (var i=0; i<words; i++)
document.write(gibberish[Math.floor(Math.random()*3)]+" ")
}
</script>
</head>
<body>
<div id="framecontentLeft">
<div class="innertube">
<h1>CSS Left, Top, Bottom and Right Frames Layout</h1>
<h3>Sample text here</h3>
</div>
</div>
<div id="framecontentRight">
<div class="innertube">
<h3>Sample text here</h3>
</div>
</div>
<div id="framecontentTop">
<div class="innertube">
<h3>Sample text here</h3>
</div>
</div>
<div id="framecontentBottom">
<div class="innertube">
<h3>Sample text here</h3>
</div>
</div>
<div id="maincontent">
<div class="innertube">
<h1>Dynamic Drive CSS Library</h1>
<p><script type="text/javascript">filltext(255)</script></p>
<p style="text-align: center">Credits: <a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></p>
</div>
</div>
</body>
</html> |
|
↑
|
|
 |
-

green-designs
|
|
↑
|
|
 |
|