CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: Exact paragraph match Open both answers

Possible Plagiarism

Plagiarized on 2020-01-24
by Awais

Original Post

Original - Posted on 2013-01-07
by Fareed Alnamrouti



            
Present in both answers; Present only in the new answer; Present only in the old answer;

**SOLUTION 1:**
> Here you can use any color e.g. `white`, `#DDD`, `rgba(102, 163, 177, > 0.45)`.
For Background: `transparent` won't work here so please use colors.
/* Change the white to any color ;) */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px white inset !important; }
for text color:
/*Change text in autofill textbox*/ input:-webkit-autofill { -webkit-text-fill-color: yellow !important; }
**SOLUTION: 2**
> it will always show the colors of your choosing
@-webkit-keyframes autofill { 0%,100% { color: #666; background: transparent; } } input:-webkit-autofill { -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */ -webkit-animation-name: autofill; -webkit-animation-fill-mode: both; }
This works fine, You can change input box styles as well as text styles inside input box :
Here you can use any color e.g. `white`, `#DDD`, `rgba(102, 163, 177, 0.45)`.
But `transparent` won't work here.
/* Change the white to any color ;) */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px white inset !important; }
Additionally, you can use this to change the text color:
/*Change text in autofill textbox*/ input:-webkit-autofill { -webkit-text-fill-color: yellow !important; }
**Advice:** Don't use an excessive blur radius in the hundreds or thousands. This has no benefit and might put processor load on weaker mobile devices. (Also true for actual, outside shadows). For a normal input box of 20px height, 30px ‘blur radius’ will perfectly cover it.

        
Present in both answers; Present only in the new answer; Present only in the old answer;