1

我看到了一些很酷的效果,它们将两个文本输入字段放在一个表单中!我附上了一张图片给你看,所以你知道我的意思。有谁知道如何创建这样的东西?

可以用 CSS 完成吗?

在此处输入图像描述

4

3 回答 3

5

你可以像这样设计它 - http://jsbin.com/adalot/1/

这应该会让你朝着正确的方向前进

  <div id='holder'>
    A :<input type='text' id='field1'/>
    B: <input type='text' id='field1'/>
  </div>

  #holder {border: solid 1px red; width: 400px; background-color: white;}
  input {border: none;}
  input:focus{outline:none;}
于 2013-02-25T16:51:24.957 回答
4

它是 css .. 没有办法将 2 个不同的元素合二为一<input>

你在图像上看到的是一个<div>包含 2 个<input>女巫的样式是“无样式”的

于 2013-02-25T16:50:37.597 回答
0

使用 4 列设置分组到行并在内部插入 2 个文本框测试此表,其中显示样式在 javascript 中设置为 none 在任何情况下也有 2 个标签和另一个带有提交按钮的表

于 2013-02-25T16:55:00.427 回答