Coder Social home page Coder Social logo

一、怎样才能让select里的内容居中显示? 二、表单输入框placeholder的文字能换行么? 三、怎么解决移动端与pc端之间的色差问题? about blogs HOT 1 OPEN

yixiaosi1314 avatar yixiaosi1314 commented on August 25, 2024
一、怎样才能让select里的内容居中显示? 二、表单输入框placeholder的文字能换行么? 三、怎么解决移动端与pc端之间的色差问题?

from blogs.

Comments (1)

yixiaosi1314 avatar yixiaosi1314 commented on August 25, 2024

一、怎样才能让select里的内容居中显示

    <select id="abc">
        <option value="1">你好吗</option>
        <option value="2">how are you</option>
        <option value="3">我很好,谢谢</option>
        <option value="4">I‘m fine,thanks</option>
    </select>
css
    #abc {
          width: 200px;
          height: 30px;
          text-align: center;
        }

二、表单输入框placeholder的文字能换行么

1.input输入框本身是单行的,因此不可以设置换行

2.textarea输入框的placeholder文字可以设置换行

由于字符串内不会转译/n和 <br/ >\ ,

<textarea name="" id="" cols="30" rows="10" placeholder="你好/n谢谢"></textarea>
<textarea name="" id="" cols="30" rows="10" placeholder="how are you<br/>I'm fine thsnks"></textarea>

我们可以通过&#13(回车),&#10(换行)来解决

<textarea name="" id="" cols="30" rows="10" placeholder="你好&#13谢谢"></textarea>
<textarea name="" id="" cols="30" rows="10" placeholder="how are you&#10 I'm fine thsnks"></textarea>

三、怎么解决移动端与pc端之间的色差问题?

from blogs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.