Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Imagen en footer y texto enfrente

New Here ,
Jun 06, 2017 Jun 06, 2017

como agregar una imagen en el footer y agregar formulario y texto enfrente de la imagen en dreamweaver

322
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jun 06, 2017 Jun 06, 2017

The easiest way is to use a background image as per Tryit Editor v3.5

Another way is to use style rules to place the text on top of the image as per

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>Untitled Document</title>

<style>

#container {

  height: 400px;

  width: 400px;

  position: relative;

}

#image {

  position: absolute;

  left: 0;

  top: 0;

}

#text {

  z-index: 100;

  position: absolute;

  color: white;

  font-size: 24px;

  font-weight: bold;

  left: 150px;

  top: 190px;

}

</style>

</head>

<body>

<div

...
Translate
Community Expert ,
Jun 06, 2017 Jun 06, 2017
LATEST

The easiest way is to use a background image as per Tryit Editor v3.5

Another way is to use style rules to place the text on top of the image as per

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>Untitled Document</title>

<style>

#container {

  height: 400px;

  width: 400px;

  position: relative;

}

#image {

  position: absolute;

  left: 0;

  top: 0;

}

#text {

  z-index: 100;

  position: absolute;

  color: white;

  font-size: 24px;

  font-weight: bold;

  left: 150px;

  top: 190px;

}

</style>

</head>

<body>

<div id="container">

  <img id="image" src="http://www.noao.edu/image_gallery/images/d4/androa.jpg" />

  <p id="text">

    Hello World!

  </p>

</div>

</body>

</html>

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines