Trying to get rid of whitespace to left of ul element

martinbshp

Trying to float a ul element to the left and tried googled solutions that say to float left and padding 0 but that not seem to be working. How do I align the li items to the left of the row in css? Here is complete codepen. Looking at the image or running the code snippet you can see that there is a large space to the left of the displayed files. I am trying to achieve getting the displayed file names to float left to occupy that whitespace.

enter image description here

function getFileData() {
  var fileDiv = document.querySelector('#files');

  var files = Array.from(document.getElementById('attachments').files);

  fileDiv.innerHTML = '<ul>' + files.map(file => {
    return '<li>' + file.name + '</li>';
  }).join('') + '</ul>';


};
#files {
  display: flex;
  justify-content: left;
}

#files ul {
  list-style-type: none;
  float: left;
}

#files ul li {
  display: inline;
  float: left;
}
<label>Attachments</label>
<div>
  <input type="file" class="form-control input-lg" name="attachments" id="attachments" multiple onchange="getFileData()">
</div>
<div id="files"></div>

Aleksandar

Just add padding-left: 0; to the #files ul.

#files ul {
  list-style-type: none;
  float: left;
  padding-left: 0;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

TSLint get rid of missing-whitespace

Trying to left-align text in a centered element

How to get rid of whitespace in the yellow portion?

How to move all li elements to the left side of the <ul> element?

Trying to get rid of Ubuntu

How do I get rid of the borders in the top left cell of this table?

Thymeleaf + Spring: get rid of the default element id

how to align first li left and second li center in the ul element

SQL, trying to get rid of large IN cluase

Can't get rid of whitespace at bottom of css parallax page

Umbraco: How to get rid of "This page is intentionally left ugly"

How to get rid of whitespace above text, using bs4

Trying to get rid of C:\inetpub ... in use?

How to get rid of MaxPermSize warning when trying to open Eclipse?

How to get rid of extra whitespace to the right of a slider?

Trying to display object properties stored within an array onto a <ul> element

Trying to get hover effect to effect an a & a ul

How to get the <ul> element of a kendo TimePicker?

How to get rid of this element or change its color?

Get the id of the ul a certain li element is belonging to

How to get rid of space below element inside details element

Get rid of whitespace at bottom of Mat Dialog

Bootstrap: how to get rid of the whitespace at the right end?

How to get rid of the while loop for my left hand algorithm

Trying to get rid of many if else with factory method

How can I get rid of whitespace on the right side of my page?

Trying to get rid of unwraps

How do I get rid of these white boxes left and right of the container?

Trying to get rid of a circular Python dependency