Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Bewerbungsformular

Empfohlene Antworten

Veröffentlicht

Also nachdem ich das eine Problem gelöst habe, hätte ich mal noch ein paar grundsätzliche Fragen.

Ich soll momentan ein Bewerbungsformular machen mit php.

Soweit noch kein Problem. Nur mit dem Positionieren habe ich nach wie vor so das ein oder andere Problem.

Es soll in etwa so aussehen:

Onlinebewerbung

Name: [............] Vorname: [.............]

Strasse: [............] Ort: [.............]

wobei die [...] Textfelder sein sollen.

Das Formular habe ich in der Seite per css positioniert.

Nur wie positionier ich nun die Sachen in dem Formular vernünftig?

Gibts da jemanden der mir da weiterhelfen kann oder gibts da eine leicht verständliche Seite die mir weiterhilft????

Vielen Dank

Sebi

Hat sich erledigt.Problem gelöst :)

Das Formular habe ich in der Seite per css positioniert.

Nur wie positionier ich nun die Sachen in dem Formular vernünftig?

Dein Problem ist, du willst Elemente in einer Zeile formatieren (also Inline-Elemente), und denen dabei eine Breite geben (das kann man aber nur bei Block-Elementen). Ein block-Element bedingt aber immer einen Zeilenumbruch.

Die Lösung hierzu: Ein Inline-Block. Leider wird der bis jetzt nur von Opera 7+ unterstützt.

Ein vorschlag wäre z.B.:


<?xml version="1.0"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>

  <head>

    <title>New Document</title>

    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />

  <style type="text/css">

  <!--

    label { float: left;

            clear: both;

            text-align: right;

            width: 9em;

            margin: 0 0.5em 10px 0; }

    input { margin-bottom: 10px; }

  //-->

  </style>

  </head>

  <body>

    <form name="bewerbung" action="#">

    <label for="input_name">Name:</label>

    <input type="text" id="input_name" name="input_name" /><br />

    <label for="input_vorname">Vorame:</label>

    <input type="text" id="input_vorname" name="input_vorname" /><br />

    <label for="input_strasse">Strasse:</label>

    <input type="text" id="input_strasse" name="input_strasse" /><br />

    <label for="input_Ort">Ort:</label>

    <input type="text" id="input_ort" name="input_ort" />

    </form>

  </body>

</html>

EDIT:

Wie hast du es denn gelöst?

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.