Ask Your Question
1

How can I replace   with display:none?

asked 2023-06-18 23:26:26 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
3

answered 2023-06-18 23:34:01 +0000

plato gravatar image

You can use CSS to hide   by setting its display property to none. Here's an example:

/* Select all elements containing   */
*:contains(" ") {
  /* Hide them */
  display: none;
}

Note that ":contains" is a jQuery selector that's used here for demonstration purposes. If you want to use this in your code, you'll need to either use jQuery or a similar library that provides this selector. Alternatively, you can manually select the elements containing   using JavaScript and then apply the CSS style to them.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-18 23:26:26 +0000

Seen: 8 times

Last updated: Jun 18 '23