html - select next element CSS -


मेरे पास html में 2 div तत्व हैं:

  & lt; body & gt; & Lt; div id = "एक" & gt; & lt; / div & gt; & Lt; div & gt; & lt; / div & gt; & Lt; / body & gt;   

मैं div से id = "one" सीएसएस से div के बाद छिपाना चाहता हूं, मैंने यह कोशिश की:

# एक: {display: none} के बाद

यह करने के लिए कोई अन्य तरीका काम नहीं करता है?

नहीं, : के बाद छद्म ऐसा नहीं करता, आपको

  #one + div {display: none; }   

और अगर आप ALL div द्वारा #one आपको उपयोग करना होगा

  #one ~ div {display: none; }   



Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -