收藏
回答

justify-content对view下<input><button>不起作用

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 需求 客户端 6.6.7.1321 2.2.5


在<view>里设置了justify-content:space-around对<view>下面的<input><button>不起作用

<!--输入框-->
  <view class="post-input-container">
    <input type="text" placeholder="输入内容" class="post-input"/>
    <button class="post-send-btn">发送</button>
  </view>


.post-input-container {
  position:fixed;
  bottom:0;
  width: 100%;
  height: 100rpx;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color:chartreuse;
}
 
 .post-input-container .post-input {
  width:50%;
  height: 80rpx;
  background-color:beige;
}
 
.post-input-container .post-send-btn {
  width:30%;
  height:80rpx;
  background-color: bisque;
}


回答关注问题邀请回答
收藏

3 个回答

  • 王业群
    王业群
    2018-10-25

     margin0rpx;

    2018-10-25
    有用 1
    回复
  • 2018-10-25

    button组件里自带了margin-left和margin-right导致的这种情况,你可以在button样式里加上margin:0;就好了

    2018-10-25
    有用 1
    回复 1
    • 2018-10-25

      非常感谢!又学到了个解决问题的思路!

      2018-10-25
      回复
  • จุ๊บ
    จุ๊บ
    2018-10-25

    建议代码 修改,将input和button用view标签包裹,去掉input和button的宽度限制



    2018-10-25
    有用 1
    回复 1
    • 2018-10-25

      感谢回答!问题已解决!

      2018-10-25
      回复
登录 后发表内容