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

Imagen en footer y texto enfrente

New Here ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

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

Views

275
Translate

Report

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

...

Votes

Translate
Community Expert ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

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, the only real Dreamweaver alternative.

Votes

Translate

Report

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