Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot attach properly all multiple input html control with label in [Input Class with 'labeled'] #1671

Open
teacher-zhou opened this issue Sep 11, 2020 · 0 comments
Labels
lang/css Anything involving CSS type/feat Any feature requests or improvements

Comments

@teacher-zhou
Copy link

Bug Report

I have one code like this

    <div class="ui right labeled input">
        <input type="text" placeholder="Dollar">
        <div class="ui basic label">.</div>
        <input type="text" placeholder="Cent">
        <div class="ui basic label">Unit</div>
    </div>

But it is not possible to attach them together
image

But it is very easier using Bootstrap to get my expectation:
image

<div class="input-group">
    <div class="input-group-prepend">
        <input class="form-control" placeholder="Dollar"/>
    </div>
    <div class="input-group-append input-group-prepend">
        <div class="input-group-text">.</div>
    </div>
    <div class="input-group-append input-group-prepend">
        <input class="form-control" placeholder="Cent"/>
    </div>
    <div class="input-group-append">
        <div class="input-group-text">Unit</div>
    </div>
</div>

Version

2.8.6

@lubber-de lubber-de added lang/css Anything involving CSS type/feat Any feature requests or improvements labels Sep 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lang/css Anything involving CSS type/feat Any feature requests or improvements
Projects
None yet
Development

No branches or pull requests

2 participants