text is covering the icons in input field reactjs - css

enter image description hereI have created a multidropdown component. In the input field text is covering the icons as shown below.
I want the text to flow down the icons.

Based on the picture you have uploaded , If you want the input field text not to overflow over the icons you must specify a width for the input :
<input style={{ width : "80%"
// or 200px
}} />
Or If you want the text to go to next line you must use textarea instead of input :
<textarea />

Related

Image alt text not displaying on WordPress

I have added an alt text on my image, but it doesn't display on homepage. Is there a way to get the alt text to display with the image without re-attaching the image, since the image was previously added on the site without alt text.
http://prntscr.com/lenin2
http://prntscr.com/lenj0o
Thanks
The "alt" text isn't the text which is displayed - that would be the figcaption text.
If you add a caption text directly when you insert the image (or when you edit it ) in Wordpress, WP automatically creates a shortcode that puts the image and the text into a figure element which contains both the image and the caption text (inside a figcaption tag).
(And if you don't add a caption text in WP's image edit box, the image is inserted without the figure tag, as a regular img tag. Whatever the alt attribute in there contains, will not be displayed - it only serves for accessibility purposes or is displayed if the image is missing)

show text above and below ion-input inside ion-item

Objective:
Show text above and below ion-input inside ion-item like below
To add only the above label, add stacked to ion-label
To add only the below label, add style flex-direction: column-reverse to input-wrapper as stated in Ionic Stacked input - Show label below text field
Difficulties:
There's one input-wrapper => cannot alter it to handle both case
Or I haven't find the solution
Workaround:
open new ion-item to show text below ion-input
But then need special handle in css to ignore font, margin...
Playground:
stackblitz
Please concern only home page
"input prefix..." is intended to be under input as remark
Is there any way to add text above and below ion-input easily?
Thanks

Unable to view entire text in input field in iPAD and iPhone

I am using text input field in my html page. When the input is more then the input field size, unable to view the remaining text. In Android phones i can able to view the entire text by scrolling using the property "Overflow: scroll", the same style/property is not working in iPAD and iPhone.
Note : Applying -webkit-overflow-scrolling: touch is also not working.
<input type="text" value="this is my input content that exceeds the limit in device" style="width:100px; overflow:scroll"/>

Wrap text next to a button

Given something like:
<div class="panel-footer">
<button type="submit" name="submit" value="submit" class="btn btn-primary">Submit</button>
Some lengthy amount of text goes here.
</div>
I want the text to automatically wrap next to the button, instead of starting next to it and wrapping underneath it. It appears with the default alignment, the text of the button is vertically aligned with the text next to it - but the button consumes additional vertical space for the button background. I want the text to use that space - instead of only seeing a single available line. It looks to me my text should be able to wrap at least once if not twice next to the button without consuming additional vertical space.
I've tried just wrapping the button & text in separate divs - but then the text appears under the button. There's obviously something I'm missing - I either want to do this using native bootstrap or a simple inline style - I don't want to modify css.
The default:
[---button top margin--]
[---------SUBMIT---------] Normal text aligns with button text
[button bottom margin]
and then wraps beneath button like this.
Desired:
[---button top margin--] If the text is long enough it should wrap
[---------SUBMIT---------] in this space and automatically
[button bottom margin] center vertically against button
Let's see if I can express it differently - the button element occupies a certain vertical space, which is typically greater than just the vertical height of the text. I want to have a text area next to the button that has the same vertical height as the total button - not just the button text.

Need to change the text in an image button

I am having an image button as I have attached here. The respective code I use for this image button is
<asp:ImageButton ID="imgbtn_GenerateRpt" runat="server" ImageUrl="~/images/report.gif" Enabled="false" CssClass="imageButton"
onclick="imgbtn_GenerateRpt_Click"/>
css class
.imageButton![enter image description here][1]
{
position:relative;
top:5px;![enter image description here][2]
}
The text within this image button is "Generate Report". I want a custom text "Acknowledge" to appear inside this image button instead of "generate Report" text.
How can i achieve this without using any image editing tools like photoshop or coreldraw?
Any help on this?
If the image itself has text in it, then there really isn't any way around creating a brand new image.
Depending on the shape of the image you could possibly overlay a <div> element with its background color set the same as the image, but at that point you would simply be wasting your time.
Download Paint.Net for free and spend about 5 minutes creating a new image.

Resources