I have a web page, for example one showing a Google Analytics report. One of the graphs is in a div with id = "ID-overview-graph". How can I use css to show only it in the page?
I've tried:
body {
display: none
}
#ID-overview-graph {
display: block
}
which didn't work for obvious reasons.