简体   繁体   English

更改输入类型文件文本

[英]Change input type file text

I want to change my input type="file" css style like in this image:我想更改我的 input type="file" css 样式,如下图所示:

在此处输入图片说明

This is my actual code:这是我的实际代码:

<div class="control">
        <input name="attachment" id="attachment" title="<?= $block->escapeHtmlAttr(__('Attachment')) ?>" value="<?= $block->escapeHtmlAttr($this->helper('Magento\Contact\Helper\Data')->getPostValue('attachment')) ?>" class="filestyle" type="file"/><i class="fas fa-paperclip"></i>
    </div>
    <label class="control-label" for="attachment"><span><?= $block->escapeHtml(__('Attachment (Optional)') ?></span></label>
</div>

and like this look now:现在看起来像这样:

在此处输入图片说明

Thank you in advance.先感谢您。

try this code:试试这个代码:

 label.custom_file { width: 300px; padding: 8px; height: 45px; position: relative; cursor: pointer; background-color: #eaeaea; } label.custom_file:before { content: '\\f0c6'; position: absolute; right: 0; top: 0px; padding: 9px 15px; height: 45px; background-color: #f5f5f5; }
 <html> <head> <title> Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css"> </head> <body> <div class="form-group"> <input type="file" class="form-control" id="file" style="display: none;"> <label for="file" class="custom_file"> Attachment(optional)</label> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="js/custom.js"></script> </body> </html>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM