Jump to content
Forumu Destekleyenlere Katılın ×
Paticik Forumları
2000 lerden beri faal olan, çok şukela bir paylaşım platformuyuz. Hoşgeldiniz.

CSS/HTML


MrLevie

Öne çıkan mesajlar

arkadaşlar background imageım var ve ben bu imageı sağa kaydırmak istiyorum fakat ne denediysem kaymıyor=( bir de tiled oldu. tek resim gözüksün istiyorum. aşağıdaki kodda ne yapmam gerekiyor?




<!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" />
<title>Untitled 1</title>
</head>

<body background="backgr.jpg" background-position:="10%" >
<button name="Abutton1" style="width: 100px">Homepage</button>
<br />
<button name="Abutton3" style="width: 100px; top: 72px;" >Projects</button>
<br />
<button name="Abutton2" style="width: 100px">Education</button>
<br />
<button name="Abutton4" style="width: 100px">Contact</button>
</body>

</html>

Link to comment
Sosyal ağlarda paylaş



<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 1</title>
</head>

<style type = "text/css">
body {background-image: url(backgr.jpg);
background-position: 30px;
background-repeat: no-repeat;
}

</style>

<body>
<button name="Abutton1" style="width: 100px">Homepage</button>
<br />
<button name="Abutton3" style="width: 100px; top: 72px;" >Projects</button>
<br />
<button name="Abutton2" style="width: 100px">Education</button>
<br />
<button name="Abutton4" style="width: 100px">Contact</button>
</body>

</html>

Link to comment
Sosyal ağlarda paylaş

×
×
  • Yeni Oluştur...