这样的标签在执行此操作时是否会计为空?
HTML
<p>
</br>
</p>
CSS p:空{display:none}
答案 0 :(得分:2)
没有。对于
p:empty {display:none}
应用p实际上必须为空。
<p></p>
是空的,将采用这种风格。
<p>
</p>
不是空的,也不会采用这种风格。
在下面的代码中添加边框仅用于说明目的。
p { border: 1px solid red; }
p:empty { display:none }
<p></p>
<p>
</p>
答案 1 :(得分:1)
不,它没有。 :empty伪选择器将选择不包含任何内容或仅包含HTML注释的元素。
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == ACTION_TAKE_PHOTO_B && resultCode == Activity.RESULT_OK) {
if (mCurrentPhotoPath != null) {
ImageView mImageView = (ImageView) getActivity().findViewById(R.id.grillplatz_erstellen_image);
Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath);
// Associate the Bitmap to the ImageView
mImageView.setImageBitmap(bitmap);
mCurrentPhotoPath = null;
}
}
}
和
try {
InputStream is = new FileInputStream(file);
Bitmap bitmap = BitmapFactory.decodeStream(is);
} catch (FileNotFoundException e) {
e.printStacktrace();
}
所以在这里你会看到只有第一个div有边框蓝色,第二个div有边框红色。