Css 如何隐藏rich:fileupload的外部边框

Css 如何隐藏rich:fileupload的外部边框,css,file-upload,Css,File Upload,我想隐藏rich:fileupload的边框。我只需要显示“浏览”按钮。有人能给我介绍一下吗 <td colspan="4"> <rich:fileUpload id="upload" fileUploadListener="#{fileUploadBean.listener}" maxFilesQuantity="#{fileUploadBean.uploadsAvailable}" acceptedTypes="t

我想隐藏rich:fileupload的边框。我只需要显示“浏览”按钮。有人能给我介绍一下吗

<td colspan="4">
            <rich:fileUpload  id="upload" fileUploadListener="#{fileUploadBean.listener}" maxFilesQuantity="#{fileUploadBean.uploadsAvailable}" 
                acceptedTypes="txt,ppt,jpg,doc,xls, gif, bmp,pdf"  ontyperejected="alert('Only TXT,PPT,DOC,XLS JPG, GIF,PDF and BMP files are accepted');"
                addControlLabel="Browse" listHeight="auto" listWidth="300px"   onsizerejected="fileSizeRejected();" 
                immediateUpload="#{fileUploadBean.autoUpload}"  allowFlash="#{fileUploadBean.useFlash}"  addButtonClass="browse-button-font" >
                <a4j:support event="onuploadcomplete" reRender="uploadInfo" oncomplete="setFlag();"/>
            </rich:fileUpload>
            </td>

试试上面的CSS,这样就可以了

谢谢回复。我已经尝试了上面的CSS,但仍然有一个外部边框显示在浏览按钮的外部。请提供一些CSS/HTML,以便我可以检查:)我已经添加了CSS代码。如果您发现了任何内容,请检查并通知我:)
    .rich-fileupload-button-border{
     border:none !important;
    }

    .rich-fileupload-ico-start,.rich-fileupload-ico-stop,.rich-fileupload-ico-clear,.rich-fileupload-anc{
    display: none !important;  
    } 

    .rich-fileupload-ico-add{
     border: 1px solid #474747; background: #0035a9 url(images/ui-bg_highlight-hard_60_0035a9_1x100.png) 50% 50% repeat-x; 
    position: fixed;
    margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible;
    background-image: none;
    }

    .browse-button-font
    {
    font-family: Segoe UI, Arial, sans-serif; font-size: 1.0em;font-weight: bold;
    color: #ffffff;     
    }

.rich-fileupload-toolbar-decor {  
 background: none;  
 border:none !important; 
}  

.rich-fileupload-list-decor{
border:none !important;
}
div div.rf-fu { border: 0px; width: 85px; !important }
div div.rf-fu-hdr { border: 0px; !important }
span span.rf-fu-btn-clr { border: 0px; !important }
span.rf-fu-btns-lft{ width: 85px; !important }
span.rf-fu-btns-rgh{ display: none; !important }
div div.rf-fu-lst { display:none; !important }