Questions tagged [html-tbody]

41 questions
0
votes
0 answers

Different background images

I am having frustrations over background image, and thus stuck. How to put different background images into 2 or more different sections of the webpage? Will putting the background image in the body in my html file be applied to the whole webpage?…
0
votes
2 answers

Convert response.request.body to dict

Using the python requests library I can issue a POST: response = requests.post("https://httpbin.org", data = {"x": 100, "y": 200}) The returned requests.Response object still holds a reference to the original…
0
votes
1 answer

React sharing behavior of external CSS file - body background for components

how can I change React sharing behavior of an external CSS file in React, so I can set the body background different for different components? login.css body { background-image: url('../../../images/bannerbackground.png'); } home.css body { …
0
votes
1 answer

jquery: reappend s to after removing them

I have to buttons: Add, there I want to add s to my (they come from a selected number) and Reset where want to remove those elements. I know I need to clone DOM elements after removing them, but how do I implement it. I´m relatively new to JS.…
Pat78
  • 3
  • 2
0
votes
3 answers

Body does not spread to 100% of the page´s height

I am trying to make my footer go to the bottom of the page. The problem is that the body is not taking 100% of the page´s height, that is why the footer cannot go to the bottom (at least this is what I think is happening). Has to be a beginner…
Simon CF
  • 25
  • 1
  • 1
  • 8
0
votes
1 answer

Table data does not align with thead when nesting tbody in React

I am attempting to create a collapsable table in React, using this codepen (built with HTML5 and Jquery) as a reference. I have converted the code into a React codepen, however, the table data does not align with the thead. In addition, I am…
tlockhart
  • 381
  • 2
  • 7
0
votes
1 answer

Load html body innerHTML using Selenium

I am searching for a way to load the HTML body into selenium bot html.body.innerHTML = .responseText ' Set bot = New Selenium.ChromeDriver bot.Get HERE Is it possible to do such a task or I have to save the html body to a file then navigate to…
YasserKhalil
  • 9,138
  • 7
  • 36
  • 95
0
votes
1 answer

Where I can find(if it exists) the voice "CSS class suffix" for "body" in Joomla panel?

I'm trying to add a class to change padding-top of the body of a site. Put the style definition in the CSS is not a problem, I've found it from Chrome inspector and I've also tested the whole setting on it. The main problem is to put the suffix of…
Jimi75
  • 1
  • 1
0
votes
1 answer

Convert inner tbody html content to json

I'm trying to get web data from a website, and I only need to grab inner html data from a tbody class and convert it into json for better control as well as to save the data into a file later on. I've only managed to read each element by using…
Dư Huy
  • 65
  • 7
0
votes
1 answer

Python-Selenium table-scraper only returns first row

I'm trying to extract information from a table with selenium. I got the rows: rows = driver.find_elements_by_xpath('//tbody/tr') And I'm trying to get two specific cells within the row: for r in rows: diccionario["property1"] =…
user16241255
0
votes
1 answer

HTML tag, can't see any cell line
I'm a person who just started to learn coding through a basic HTML book. Speaking the problem i faced directly, I can't see the cell line on the brower without knowing why i can't see, because I just copied the code which wrote on the book i studied…
Jake Kim
  • 1
  • 1
0
votes
1 answer
and HTML Table Tags But Not Remove The Content Inside The Tags?
I've taken a look at some of the other questions about removing table tbody tags (see below) but am still stuck on a problem.
tag displays in chrome but not source Javascript delete a table tbody tag How do i remove tags from an HTML…
Eric Egana
  • 11
  • 1
  • 2
0
votes
0 answers

tbody with ngFor is not visible

In my main component i got a tbody with ngFor it should send elements to another component which should display the elements items. Here is my main component
J.Noob
  • 1
  • 1
0
votes
1 answer

BeautifulSoup - Can't get tbody

I'm trying to get a table that is located inside multiple nests. I'm new to Beautifulsoup and I have practiced some simple eeemples. The issue is that, I can't understand why my code can't get the "div" tag that has the class "Explorer…
Abdoo13
  • 1
  • 1
0
votes
1 answer

grouping tr but browser closes tbody prematurely

When using LitElement to render data dynamically, the browser inserts tbody all the time negating any effort to "group" table rows. render() { return html`
user3757849
  • 199
  • 2
  • 14